Guest User

Untitled

a guest
May 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. class Sudoku
  2. def initialize
  3. @puzzle = Array.new(9) {Array.new(9, 0)}
  4. end
  5. end
Add Comment
Please, Sign In to add comment