Skip to content

Instantly share code, notes, and snippets.

@pumpkincouture
Created August 24, 2014 02:00
Show Gist options
  • Save pumpkincouture/a61de224c63bfd9e1e5c to your computer and use it in GitHub Desktop.
Save pumpkincouture/a61de224c63bfd9e1e5c to your computer and use it in GitHub Desktop.
def same_last_name?(list)
last_name = list.group_by { |h| h["LAST_NAME"] }.values.select { |a| a.size > 1}.flatten
return false if last_name.empty?
list
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment