Created
September 18, 2014 02:03
-
-
Save pumpkincouture/1add9a5bef4e9f1af51c 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 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