-
-
Save ttigerboy/5641904ce4f93e6d18e36605bbe039ba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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