Skip to content

Instantly share code, notes, and snippets.

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