Search results for "6c7b0c76911e65a18b3056e8db932713" in md5 (4)

/g/ - (λ) - Lisp General
Anonymous No.106400773
Today I realized that logical-and is just a fold-right operation which accumulates boolean values, and that you can nest arbitrarily complex, recursive logical structures inside it. SICP is fucking mind-bending. There is something incredibly satisfying about discovering these computational principles which seem baked into not just computers but the structure and fabric of reality itself. This book is like a drug.
/g/ - Thread 106384114
Anonymous No.106384114
Which function is faster?

#define SIZE 10000000

float Foo(const float* a, const float* b) {
float sum = 0;
for (int i = 0; i < SIZE; i++) {
sum += a[i] * b[i];
}
return sum;
}

float Bar(const float* a, const float* b) {
float* c = new float[SIZE];
float sum = 0;

for (int i = 0; i < SIZE; i++) {
c[i] = a[i] * b[i];
}
for (int i = 0; i < SIZE; i++) {
sum += c[i];
}
delete[] c;
return sum;
}
/g/ - Thread 106164585
Anonymous No.106164585
Why do they keep making kids so goddam sexy these days?
/g/ - (λ) - ᵋLisp General
Anonymous No.105754376
>>105753800
>Is there a good scheme resource
My son... you seem like you haven't heard the Good Word yet...