Skip to content

Instantly share code, notes, and snippets.

@kenmazaika
Created May 18, 2015 18:03
Show Gist options
  • Save kenmazaika/02f5887c722149829820 to your computer and use it in GitHub Desktop.
Save kenmazaika/02f5887c722149829820 to your computer and use it in GitHub Desktop.
x = loc[1]
y = loc[0]
@image[y][x+1]=1 if x<(@image[y].length-1)
@image[y][x-1]=1 if x>0
@image[y+1][x]=1 if y<(@image.length-1)
@image[y-1][x]=1 if y>0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment