Define a scheme procedure
I need helpwriting a scheme procedure that takes two lists as inputs and the outputs an indication as to whether l开发者_Python百科ist2 is less than list1.
(define (analyze list1 list2
Definition:
(define (analyze list1 list2)
(< (length list1) (length list2)))
Usage:
(analyze (list 1) (list 2 3)) -> #t
精彩评论