Created
December 25, 2017 08:46
-
-
Save bigforcegun/26837bae8bd337acf01e111f98213165 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
| function door_num(){ | |
| var floor_room_count = 6 | |
| var floor_count = 8 | |
| room_number = 248 | |
| n = room_number/floor_room_count >> 0 | |
| n = n + 1 | |
| n = n / floor_count >> 0 | |
| return n + 1 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment