Skip to content

Instantly share code, notes, and snippets.

@mverzilli
Created December 15, 2015 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mverzilli/bc6510f854792c0c2112 to your computer and use it in GitHub Desktop.
Save mverzilli/bc6510f854792c0c2112 to your computer and use it in GitHub Desktop.
Simulando acceso indexado en CodeGames :)
function states(i)
if i == 0
state0
else
if i == 1
state1
else
if i == 2
state2
else
state_default
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment