Last active
December 1, 2019 12:09
-
-
Save jellea/4d62380f587fbc2c3de4ce23fc0f2909 to your computer and use it in GitHub Desktop.
Revisions
-
jellea revised this gist
Dec 1, 2019 . No changes.There are no files selected for viewing
-
jellea revised this gist
Dec 1, 2019 . No changes.There are no files selected for viewing
-
jellea revised this gist
Dec 1, 2019 . No changes.There are no files selected for viewing
-
jellea revised this gist
Dec 1, 2019 . No changes.There are no files selected for viewing
-
jellea revised this gist
Dec 1, 2019 . No changes.There are no files selected for viewing
-
jellea created this gist
Dec 1, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ (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))