Exercise: Tumbler Wheels Lock combinations

You have just bought a new safe to keep all the riches you will gain from becoming a Clojure developer (hopefully). The safe has a 3 tumbler wheel combination lock to protect your new found wealth. Each tumbler wheel has the numbers 0 to 9.

Combination locks

Represent a single combination lock

How would you represent the possible numbers in just one of the tumbler wheels

[]
Reveal answer...

Generating the number range

As the numbers on the tumbler wheel are just a range between 0 and 9, then rather than type out all the numbers, is there a function to generate all the numbers for us.

()
Reveal answer...

Create all the Combinations

Generate all the possible combinations of the lock using three tumbler wheels We have given you a bit of a clue

(for [tumbler-one (range 10)]
)
Reveal answer...

Total number of combinations

You did the hard work already, now return just the total number of combinations

()
Reveal answer...

Make the combinations harder to guess

To make our lock harder to break into, we should only allow the combinations where each tumbler wheel has a different number. So you should exclude combinations like 1-1-1, 1-2-2, 1-2-1, etc.

How many combinations does that give us?

()
Reveal answer...

results matching ""

    No results matching ""