Last active
March 16, 2019 09:11
-
-
Save fabsrc/aea34743aa48870bd21539b02f35faee to your computer and use it in GitHub Desktop.
Coin Golf
This file contains 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
r=i=>{b=i*(d=100);[200,d,50,20,10,5,2,1].map(a=>{console.log(~~(b/a)+'x',a<d?a+'c':a/d+'€');b%=a})} | |
// Usage: | |
// r(1.56) |
This file contains 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
b=process.argv[2]*(d=100);[200,d,50,20,10,5,2,1].map(a=>{console.log(~~(b/a)+'x',a<d?a+'c':a/d+'€');b%=a}) | |
// Usage | |
// node coins_node.js 5.34 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment