I have 4 different solutions for the challenge (from Top to Bottom)
(1) Simple Word Scramble - Only 2 Nodes
(2) Simple Word Scramble (Actual Solution) - 5 Nodes
(3) Word Scramble with True Randomization using Loops - 9 Nodes
(4) Word Scramble “Bonus” Solution with True Randomization, without using Loops - 9 Nodes
As always on Tuesday’s, here’s our solution to challenge 34!
As you can see in our solution workflow, there are three different approaches. The first one is quite a simple solution, but the permutations are not exactly random. The other two solutions introduce true randomization, one using loops, the other doesn’t.
It’s great to see all your different approaches for this task Kudos!
See you tomorrow for a new challenge!