Код Ревью
Сравни свои решения
#| BEGIN (Write your solution here) |#
(define (last-pair list)
(cond (null? list)nil
(= nil (cadr list) car list)
(else (last-pair (cdr list)))
#| END |#
#| BEGIN (Write your solution here) |#
(define (last-pair list)
(cond (null? list)nil
(= nil (cadr list) car list)
(else (last-pair (cdr list)))
#| END |#