# File scrabble.rb, line 370
  def can_build_word word, existing_letters = []
    pool = self + existing_letters

    word.chars.all? do |char|
      if pool.include?(char)
        pool.delete_first char
      end
    end
  end