Advertisement
MarkUa

Untitled

Sep 12th, 2019
869
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.85 KB | None | 0 0
  1. (define (count lst)
  2.   (cond ((null? lst) 0)
  3.        
  4.         (else (+ 1 (count (cdr lst))))))
  5.  
  6.  
  7. (define (second my_list)
  8.      (cond ((< ( count my_list) 2) "less than 2")
  9.  
  10.                     (else  ( cdr (cdr my_list))
  11.  
  12.                            )
  13.            )
  14.      
  15.      
  16.   )
  17.      (define r '() )
  18.  
  19. (define (first my_list)
  20.      
  21.      (cond ((< ( count my_list) 2) '("less than 2" "fff") )
  22.            ((> ( count my_list) 1) (set! r (cons (car (cdr my_list)) r))
  23.                                    (set! r (cons (car my_list) r))
  24.                                    r )
  25.  
  26.                     (else  '(car my_list)
  27.  
  28.                            )
  29.            )
  30.      
  31.      
  32.   )
  33.  
  34. (count '(4 5 4 2 5 3 5))
  35. (define sec (second '(2 3 5 4)))
  36. (define fir (first '(2  3 5 4)))
  37. (define re '() )
  38. (set! re (cons sec '()))
  39. (set! re (cons fir re))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement