Skip to content

Instantly share code, notes, and snippets.

@Hydrotoast
Created December 2, 2012 10:32
Show Gist options
  • Save Hydrotoast/4188102 to your computer and use it in GitHub Desktop.
Save Hydrotoast/4188102 to your computer and use it in GitHub Desktop.
FriendZoneAlgorithm
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