Skip to content

Instantly share code, notes, and snippets.

@bigforcegun
Created December 25, 2017 08:46
Show Gist options
  • Select an option

  • Save bigforcegun/26837bae8bd337acf01e111f98213165 to your computer and use it in GitHub Desktop.

Select an option

Save bigforcegun/26837bae8bd337acf01e111f98213165 to your computer and use it in GitHub Desktop.
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