Skip to content

Instantly share code, notes, and snippets.

@workmad3
Created May 11, 2010 13:02
Show Gist options
  • Save workmad3/397272 to your computer and use it in GitHub Desktop.
Save workmad3/397272 to your computer and use it in GitHub Desktop.
class Sudoku
def initialize
@puzzle = Array.new(9) {Array.new(9, 0)}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment