Created
October 26, 2022 18:25
-
-
Save sylr/0dbc9e03d76d6114f2c832afe0a8d66f to your computer and use it in GitHub Desktop.
ivy
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
# Convert X hours Y minutes to Z minutes | |
op a mins b = (0 60 decode a b) | |
# data hours minutes hours minutes ... etc | |
x = 0 53 1 32 0 53 1 6 1 9 0 41 1 3 1 1 1 2 2 17 0 46 1 36 | |
# reduce | |
+/mins/((rho x)/2) 2 rho x | |
# hours | |
0 60 encode _ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment