1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-13 17:06:49 +00:00
janet/examples/maxtriangle.dst

25 lines
449 B
Plaintext
Raw Normal View History

# Find the maximum path from the top (root)
# of the triangle to the leaves of the triangle.
2018-03-25 22:51:31 +00:00
(defn myfold [xs ys]
(def xs1 (tuple-prepend xs 0))
(def xs2 (tuple-append xs 0))
(def m1 (map + xs1 ys))
(def m2 (map + xs2 ys))
(map max m1 m2))
2018-03-25 22:51:31 +00:00
(defn maxpath [t]
(extreme > (reduce myfold () t)))
# Test it
# Maximum path is 3 -> 10 -> 3 -> 9 for a total of 25
2018-03-25 22:51:31 +00:00
(def triangle '[
[3]
[7 10]
[4 3 7]
[8 9 1 3]
2018-03-25 22:51:31 +00:00
])
(print (maxpath triangle))