# File lib/quiz1/t/solutions/Carlos/solitaire.rb, line 56
        def wrap_down pos
                pos %= length
                if pos == 0
                        pos = length
                end
                pos
        end