Skip to content

Instantly share code, notes, and snippets.

@mattearly
Created April 6, 2017 16:54
Show Gist options
  • Save mattearly/b772f62b5acf5c0df44777dfdaa4cce6 to your computer and use it in GitHub Desktop.
Save mattearly/b772f62b5acf5c0df44777dfdaa4cce6 to your computer and use it in GitHub Desktop.
(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