Question: This is a Scheme ; Returns a list with only the positive items in lst ; For example (posOnly '(-1 1 2 0 3 4
This is a Scheme
; Returns a list with only the positive items in lst
; For example (posOnly '(-1 1 2 0 3 4 -4 5)) should return; (1 2 3 4 5)
(define (posOnly lst)
; TODO: Fill this in
'() ; stub -- modify it accordingly
)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
