Created
April 6, 2017 16:54
-
-
Save mattearly/b772f62b5acf5c0df44777dfdaa4cce6 to your computer and use it in GitHub Desktop.
This file contains 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 (remove-nth n l) | |
(cond ((= n 0) l ) | |
((null? l) l) | |
(else (cons (car l) (remove-nth (- n 1) (cdr l)))) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment