Created
December 2, 2012 10:32
-
-
Save Hydrotoast/4188102 to your computer and use it in GitHub Desktop.
FriendZoneAlgorithm
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 analyze(other, weights): | |
return reduce(lamda base, items: base + items[0] * items[1], zip(other, weights), 0) | |
def friend_zone(other): | |
friend_zone_dict[other] = True | |
def FriendZone(): | |
while date_is_ongoing: | |
certainty_of_others_feelings_of_me = analyze(other) | |
if certainty_of_others_feelings_of_me >= threshold_of_romantic_felings: | |
friend_zone(other) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment