Learn Recursion by Solving the Tower of Hanoi Puzzle - Step 19

Tell us what’s happening:

The instructions say to replace the (i +1) % 3 in my if condition with remainder, as remainder is now equal to (i + 1) % 3.

I’ve done that, but the program says my code doesn’t pass. The only feedback it gives me is that I should replace the (i + 1) % 3 with remainder in my if condition, which as I previously stated, I believe I have already done.

Your code so far

NUMBER_OF_DISKS = 3
number_of_moves = 2**NUMBER_OF_DISKS - 1
rods = {
    'A': list(range(NUMBER_OF_DISKS, 0, -1)),
    'B': [],
    'C': []
}


# User Editable Region

def move(n, source, auxiliary, target):
    # display starting configuration
    print(rods)
    for i in range(number_of_moves):
        remainder = (i + 1) % 3
        if remainder:
            print(f'Move {i + 1} allowed between {source} and {target}')

# User Editable Region


# initiate call from source A to target C with auxiliary B
move(NUMBER_OF_DISKS, 'A', 'B', 'C')

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36

Challenge Information:

Learn Recursion by Solving the Tower of Hanoi Puzzle - Step 19

Here is the original code:

        remainder = (i + 1) % 3
        if (i + 1) % 3 == 1:

You replaced a little more than (i +1) % 3. You can only replace the part of the expression that is stored in the remainder variable

I got it, thanks for your help!

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.