Skip to content

Instantly share code, notes, and snippets.

@ttigerboy
Forked from wflanagan/sorts.rb
Created April 7, 2018 20:05
Show Gist options
  • Save ttigerboy/5641904ce4f93e6d18e36605bbe039ba to your computer and use it in GitHub Desktop.
Save ttigerboy/5641904ce4f93e6d18e36605bbe039ba to your computer and use it in GitHub Desktop.
books = ["Charlie and the Chocolate Factory", "War and Peace", "Utopia", "A Brief History of Time", "A Wrinkle in Time"]
books.sort! # sorts the books in place
books = books.sort # sorts them, putting them back into the books variable.
books = books.sort_by { |book| book.length } # sorts them into the length of their title, shortest first
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment