Skip to content

Instantly share code, notes, and snippets.

@milothiesen
Forked from anonymous/BnUf-1.rb
Created February 16, 2016 21:27
Show Gist options
  • Save milothiesen/d1f0bdbb4ed9792ae5cd to your computer and use it in GitHub Desktop.
Save milothiesen/d1f0bdbb4ed9792ae5cd to your computer and use it in GitHub Desktop.
https://repl.it/BnUf/1 created by anonymous
names = ["Jill Bauerle", "Iris Lee", "Gregory Raml", "Maile Thiesen", "Jane Levenson", "Rebecca Morgan"]
sorted_names = names.sort_by{ |name| name.split(" ").reverse.join.upcase }
puts sorted_names
ruby 2.2.0p0 (2014-12-25 revision 49005)
>>> Jill Bauerle
Iris Lee
Jane Levenson
Rebecca Morgan
Gregory Raml
Maile Thiesen
=> nil
@milothiesen
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment