Method: WordSearcher::Solver#initialize
- Defined in:
- lib/word_searcher/solver.rb
#initialize ⇒ Solver
Returns a new instance of Solver.
6 7 8 9 10 11 12 13 |
# File 'lib/word_searcher/solver.rb', line 6 def initialize @word = [] @puzzle = [] @word_chars = [] @found = [] @first_letter = nil @coords = [] end |