Game Instructions

Tap a tile to toggle its color. When a tile changes nearby tiles may change as well. Each move affect multiple tiles. The target is to turn all tiles into yellow in the fewest steps possible.

Press 'j' to show/hide the game. Press 'i' to show/hide the instructions. Press 't' to show/hide the top score table.

Steps: 0

Top Scores

Name Steps
Press J to toggle the game, I to toggle instructions, and T to toggle the top scores

Congratulations!

You solved the puzzle in 0 steps!

Success!

Score submitted successfully!

Error

Failed to submit score. Please try again.

Conditional Functions in Python PRO

Python allows us to condition the definition of a function. Since the function is defined during the execution of the code itself we can use a conditional statement in order to define the function that fits most.

recursive = True

if recurcive:
    def factorial(n):
        print("within recursive factorial")
        if n==0:
            return 1
        else:
            return factorial(n-1)*n
else:
    def factorial(n):
        print("within simple factorial")
        index = 1
        total = 1
        while index<n:
            total *= index
            index+=1
        return total

print(factorial(3))

The following short video clip shows that.

Share:

The Beauty of Code

Coding is Art! Developing Code That Works is Simple. Develop Code with Style is a Challenge!

Update cookies preferences