# File lib/quiz1/t/solutions/Jim Menard/solitaire_cypher.rb, line 9
    def Card.value_to_chr(value)
        i = value
        i -= 26 while i > 26
        (i + ?A - 1).chr
    end