Guest User

Untitled

a guest
Aug 16th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. (define (soloMinusculas? cad)
  2. ;;se convierte de cadena a lista de caracteres, y se envia a revision
  3. (soloMinAux? (string->list cad)))
  4.  
  5. (define (soloMinAux? L)
  6. (if (null? L)
  7. #t
  8. (let ((c (char->integer (car L))))
  9. (and (>= c 97) (<= c 122) (soloMinAux? (cdr L))))))
Add Comment
Please, Sign In to add comment