Last active
June 6, 2018 16:49
-
-
Save matoous/352ce2065d7f80b93111be13de0f5907 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
#lang scheme | |
(define (rbp n) | |
(define (help canBeRed n) | |
(if (= n 0) 1 | |
(if canBeRed (+ (help #t (- n 1)) (help #f (- n 1))) | |
(help #t (- n 1))))) | |
(help #t n)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment