Skip to content

Instantly share code, notes, and snippets.

@pumpkincouture
Created September 18, 2014 02:03
Show Gist options
  • Save pumpkincouture/1add9a5bef4e9f1af51c to your computer and use it in GitHub Desktop.
Save pumpkincouture/1add9a5bef4e9f1af51c to your computer and use it in GitHub Desktop.
def pick_for_jen(direct_flight_pick, indirect_flight_duration, indirect_flight)
if direct_flight_pick == []
indirect_flight
elsif direct_flight_pick.get_duration <= indirect_flight_duration
direct_flight_pick
else
indirect_flight
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment