# File lib/quiz1/t/solutions/Dennis Ranke/solitaire.rb, line 79
  def to_s
    @deck.map {|v| (v > 51) ? (v + 13).chr : (v + 1).to_s}.join(' ')
  end