Created
June 12, 2013 00:22
-
-
Save jasonrobertfox/5762006 to your computer and use it in GitHub Desktop.
Determine which possible matches fit with your schedule.
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
$you = array("name"=>"yourName", "startDay"=> 12, "endDay"=> 15); | |
$possibleMatches = array( | |
array("name"=>"joe", "startDay"=> 14, "endDay"=> 17), | |
array("name"=>"jane", "startDay"=> 10, "endDay"=> 11); | |
) | |
function findTravelBuddies(????){ | |
???? | |
} | |
OUTPUT: Hey, you might be able to meet up with joe! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment