Solutions of some puzzles in Scheme (Lisp), my first experience with it.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.2 KiB

10 months ago
#!/usr/bin/guile -s
!#
(use-modules (ice-9 rdelim))
(define (read-lines)
(let loop ((line (read-line)))
(if
(eof-object? line)
'()
(cons line (loop (read-line))))))
(define (map list mapper)
(if
(null? list)
'()
(cons (mapper (car list)) (map (cdr list) mapper))))
10 months ago
(define (reduce list reducer current)
(if
(null? list)
current
(reduce (cdr list) reducer (reducer current (car list)))))
10 months ago
(define (first-last-combine current rest)
(if
(null? current)
rest
(if
(null? rest)
current
(cons (car current) (cdr rest)))))
(define (first-last list predicate)
(if
(null? list)
'()
(first-last-combine
(if
(predicate (car list))
(cons (car list) (cons (car list) '()))
'())
(first-last (cdr list) predicate))))
10 months ago
(define (sum numbers) (reduce numbers + 0))
10 months ago
10 months ago
(define (is-numeric-char char) (if (char-numeric? char) #t #f))
10 months ago
(define (solve-line line)
(
(lambda (first-last-result) (string->number (list->string first-last-result)))
10 months ago
(first-last (string->list line) is-numeric-char)))
10 months ago
(define (solve-all lines)
10 months ago
(sum (map lines solve-line)))
10 months ago
(display (solve-all (read-lines)))