Skip to content

Instantly share code, notes, and snippets.

@jasonrobertfox
Created June 12, 2013 00:22
Show Gist options
  • Save jasonrobertfox/5762006 to your computer and use it in GitHub Desktop.
Save jasonrobertfox/5762006 to your computer and use it in GitHub Desktop.
Determine which possible matches fit with your schedule.
$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