Skip to content

Instantly share code, notes, and snippets.

@mtsmfm
Created December 28, 2012 11:07
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 mtsmfm/4396885 to your computer and use it in GitHub Desktop.
Save mtsmfm/4396885 to your computer and use it in GitHub Desktop.
#coding:utf-8
def fuga(n, i, n_max)
kugiru = 2 ** (i+1)
tonari = 2 ** i
if(n % kugiru < kugiru/2)
n + tonari
else
n - tonari
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment