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.

61 lines
1.3 KiB

11 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))))
11 months ago
(define (reduce list reducer current)
(if
(null? list)
current
(reduce (cdr list) reducer (reducer current (car list)))))
11 months ago
(define (combine list combiner)
11 months ago
(if
11 months ago
(null? (car list))
(cdr list)
11 months ago
(if
11 months ago
(null? (cdr list))
(car list)
(combiner (car list) (cdr list)))))
(define (sum numbers) (reduce numbers + 0))
(define (is-numeric-char char) (if (char-numeric? char) #t #f))
11 months ago
(define (first-last list predicate)
(if
(null? list)
'()
11 months ago
(combine
(cons
(if
(predicate (car list))
(cons (car list) (cons (car list) '()))
'())
(first-last (cdr list) predicate))
(lambda (current rest)
(cons (car current) (cdr rest))))))
11 months ago
11 months ago
(define (solve-line line)
(
(lambda (first-last-result) (string->number (list->string first-last-result)))
11 months ago
(first-last (string->list line) is-numeric-char)))
11 months ago
(define (solve-all lines)
11 months ago
(sum (map lines solve-line)))
11 months ago
(display (solve-all (read-lines)))