Skip to content

Instantly share code, notes, and snippets.

@tmikeschu
Created April 18, 2017 18:53
Show Gist options
  • Save tmikeschu/363e47c2f352d80b2fd6ae226db0ac08 to your computer and use it in GitHub Desktop.
Save tmikeschu/363e47c2f352d80b2fd6ae226db0ac08 to your computer and use it in GitHub Desktop.
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