Created
August 24, 2014 02:00
-
-
Save pumpkincouture/a61de224c63bfd9e1e5c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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