We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e571105 commit 71daf2eCopy full SHA for 71daf2e
clojure/src/icfpc2025/main.clj
@@ -49,7 +49,7 @@
49
(fn [other-room-index other-room]
50
(if (= other-room-index room-index)
51
; For room looping back to itself, all the doors should be short-circuited.
52
- '[
+ [
53
[(== (:room door) other-room-index)
54
(== (:door door) door-index)]
55
]
@@ -61,7 +61,7 @@
61
(fn [other-door-index other-door]
62
; If the current door connects to the other room, corresponding door of the other room should
63
; connect to here.
64
- '[(== (:room door) other-room-index)
+ [(== (:room door) other-room-index)
65
(== (:door door) other-door-index)
66
(== (:room other-door) room-index)
67
(== (:door other-door) door-index)]
0 commit comments