Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (sublistL1 9 '(10 5 7 9 3 2 1)) ; '(10 5 7 9)
- (sublistL2 9 '(10 5 7 9 3 2 1)) ; '(9 3 2 1)
- (sublistL3 5 3 '(10 5 7 9 3 2 1)) ; '(5 7 9 3) ; x y y siempre existen
- (sublistL4 5 3 '(10 5 7 9 3 2 1)) ; '(5 7 9 3)
- (sublistL4 15 3 '(10 5 7 9 3 2 1)) ; '(3 2 1)
- (sublistL4 5 13 '(10 5 7 9 3 2 1)) ; '(5 7 9 3 2 1)
- (sublistL4 15 13 '(10 5 7 9 3 2 1)) ; '(10 5 7 9 3 2 1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement