# File lib/quiz1/t/solutions/Niklas Frykholm/solitaire.rb, line 101 def mod(c) return c - 26 if c > 26 return c + 26 if c < 1 return c end