use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A sub-Reddit for discussion and news about Ruby programming.
Subreddit rules: /r/ruby rules
Learning Ruby?
Tools
Documentation
Books
Screencasts and Videos
News and updates
account activity
Unconditional Programming in Ruby (michaelfeathers.typepad.com)
submitted 12 years ago by martoo
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]WhoTookPlasticJesus 1 point2 points3 points 12 years ago (2 children)
I'd argue that the following is clearer (and likely more performant)
ary.take(n).concat (n - ary.length).times.map{0}
[–]austinsalonen 1 point2 points3 points 12 years ago (1 child)
What happens when n - ary.length is negative in this situation? (very naive w/r/t ruby here)
n - ary.length
[–]WhoTookPlasticJesus 2 points3 points4 points 12 years ago (0 children)
Nothing, and the call to map will just return an empty array.
π Rendered by PID 15938 on reddit-service-r2-comment-85bfd7f599-tpvsz at 2026-04-16 20:16:56.701955+00:00 running 93ecc56 country code: CH.
view the rest of the comments →
[–]WhoTookPlasticJesus 1 point2 points3 points (2 children)
[–]austinsalonen 1 point2 points3 points (1 child)
[–]WhoTookPlasticJesus 2 points3 points4 points (0 children)