# File lib/quiz1/t/solutions/Bill Guindon/solitaire.rb, line 63
  def cards=(cards)
    # flatten to handle cut results.
    @cards = cards.flatten
    # rebuild @order each time the deck changes.
    update_order
  end