Last active
August 29, 2015 14:22
-
-
Save nainglinaung/6df799384fc71a2328af to your computer and use it in GitHub Desktop.
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
var input = process.argv[2]; | |
var DayDict = {'sun':6,'mon':15,'tue':8,'wed':17,'thu':19,'fri':21,'yar':12}; | |
console.log((input in DayDict)? DayDict[input]*3-3:'invalid input'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment