Overview
| Comment: | fix backwardity |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | day15 |
| Files: | files | file ages | folders |
| SHA3-256: |
96ef0187bfad6191904d004fa7f11195 |
| User & Date: | joel on 2019-11-27 19:07:46 |
| Other Links: | branch diff | manifest | tags |
Context
|
2019-11-28
| ||
| 16:08 | evolution check-in: 722424 user: joel tags: day15 | |
|
2019-11-27
| ||
| 19:07 | fix backwardity check-in: 96ef01 user: joel tags: day15 | |
|
2019-11-26
| ||
| 23:01 | Refine what we got check-in: e94fa4 user: joel tags: day15 | |
Changes
Modified day15.rkt from [124443] to [266d98].
| ︙ | |||
99 100 101 102 103 104 105 | 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | - - + + - - - - - + + + + |
[else (cons ch lst)])))))
;; Is point p inside grid g? Film at 11
(define (inside-grid? g p)
(match-define (posn px py) p)
(and (>= px 0)
(>= py 0)
|
| ︙ |