back
user profile
pykello
7,321karma·723submissions·March 16, 2011
recent activity (723 total)
comment
You are right. Thank you. Going to correct this.
comment
Just to make sure, are you referring to bucket sort and similar algorithms or something else?
comment
"foldl" works like aggregation in databases. When you say "fold func init values", the result is calculated as: result = init
for value in values:
result = func(result, …