Skip to content

Instantly share code, notes, and snippets.

@yakreved
Created August 14, 2013 01:56
Show Gist options
  • Save yakreved/6227399 to your computer and use it in GitHub Desktop.
Save yakreved/6227399 to your computer and use it in GitHub Desktop.
sicp 2.17 Последний элемент
(define (last-pair items)
(define (length-iter a prev)
(if (null? a)
prev
(length-iter (cdr a) (car a))))
(length-iter items 0))
(last-pair (list 23 72 149 34))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment