#!/usr/bin/env python """ Examples from: http://codingbat.com Put here so we can write unit tests for them ourselves """ # Python > Warmup-1 > sleep_in def sleep_in(weekday, vacation): return not (weekday == True and vacation == False)