# File lib/quiz1/t/solutions/Thomas Leitner/solitaire.rb, line 94
  def initialize( init = -1, method = :fisher_yates )
    @deck = Deck.new
    @deck.shuffle( init, method ) unless init == -1
  end