Created
December 1, 2019 12:08
-
-
Save jellea/ecf839afad5770306f482dcd9d14c915 to your computer and use it in GitHub Desktop.
Advent Of Code Puzzle 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(fn mass->fuel [mass] | |
(-> (tonumber mass) (/ 3) (math.floor) (- 2))) | |
(let [file (io.open "1.data" "r") | |
file-contents (file:read "*a") | |
mods (string.gmatch file-contents "%d+")] | |
(var total-fuel 0) | |
(each [mass mods] | |
(let [fuel (mass->fuel mass)] | |
(set total-fuel (+ total-fuel fuel)) | |
(var rest-fuel fuel) | |
(while (> rest-fuel 0) | |
(do | |
(set rest-fuel (mass->fuel rest-fuel)) | |
(if (> rest-fuel 0) | |
(set total-fuel (+ total-fuel rest-fuel))))))) | |
(print total-fuel)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment