Skip to content

Instantly share code, notes, and snippets.

@morbusg
Created September 16, 2013 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save morbusg/6585214 to your computer and use it in GitHub Desktop.
Save morbusg/6585214 to your computer and use it in GitHub Desktop.
array of strings with number segments, sort the array by summing them up
ary.sort_by {|i| i.split(/\D+/).map(&:to_i).reduce(:+) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment