Skip to content

Instantly share code, notes, and snippets.

@mendelB
Last active August 29, 2015 14:26
Show Gist options
  • Save mendelB/ef3d2ad46b76ab273ac5 to your computer and use it in GitHub Desktop.
Save mendelB/ef3d2ad46b76ab273ac5 to your computer and use it in GitHub Desktop.
def sort_by_nth_letter(array, num)
array.sort {|a, b| a[num] <=> b[num] }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment