Last active
October 29, 2015 18:19
-
-
Save feupeu/e7e7b2ae658ddfdbed8b 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
(define (calendars-overlap? cal1 cal2) | |
(ormap | |
(lambda (app) | |
(calendars-overlap-step app (cal-part cal2 APPOINTMENTS)) | |
) | |
(cal-part cal1 APPOINTMENTS) | |
) | |
) | |
(define (calendars-overlap-step app apps) | |
(if [empty? apps] | |
#f | |
(or | |
(appointments-overlap? app (car apps)) | |
(calendars-overlap-step app (cdr apps)) | |
) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment