Created
April 18, 2017 18:53
-
-
Save tmikeschu/363e47c2f352d80b2fd6ae226db0ac08 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 turing_transform(person) | |
4.times do | |
person.destroy_confidence | |
person.teach_some_stuff | |
person.take_lots_of_money | |
person.reduce_melanin | |
person.throw_a_little_morsel_of_confidence | |
person.make_some_great_friends | |
end | |
person | |
end | |
def same_person?(person) | |
person == turing_transform(person) | |
end | |
peeps_1610.none? { |peep| same_person?(peep) } # returns true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment