# File lib/quiz1/t/solutions/Dennis Ranke/solitaire.rb, line 74 def letter_at(index) id = @deck[index] (id > 51) ? nil : (id % 26) + 1 end