Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Zeke Sikelianos

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

randomizing an array in ruby (the right way)

Snagged from http://www.rubyquiz.com/quiz113.html

# be sure to use sort_by rather than sort
quiz = (1..10).to_a
quiz.sort_by { rand }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS