CoffeeScript / Node.js - ticksort
gist.github.com
CoffeeScript / Node.js - ticksort
1–5 of 5 posts
Re: CoffeeScript / Node.js - ticksort
#2anyone have an idea on how to get rid of `console.log` in ticksort.coffee?
Re: CoffeeScript / Node.js - ticksort
#3This implementation claims to take SUM(argv) ticks, whereas the original sleepsort took MAX(argv) seconds.
Is this an error, or is something done fundamentally different?
Re: CoffeeScript / Node.js - ticksort
#4For those missing the sleep-sort reference: http://dis.4chan.org/read/prog/1295544154
Re: CoffeeScript / Node.js - ticksort
#5This implementation claims to take SUM(argv) ticks, whereas the original sleepsort took MAX(argv) seconds. Is this an error, or is something done fundamentally different?
It takes SUM(argv) as opposed to MAX(argv) as originally stated, which was wrong.
Every argument will put itself back into the event loop (tick) N times until it actually prints the value so we need to SUM the values and not just take the MAX.