This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
We're actively looking for ideas on how to improve Weekly Challenges and would love to hear what you think!
Submit FeedbackI liked the idea of ratcheting the rings round 1 by 1, so I went with an iterative macro. Not the most performant solution, but in my head I can hear the 'tick' as it turns each ring round by one position.
MOD(([Position]+floor([Engine.IterationNumber]/pow(6,[0-5])))-1,6)+1where the power of 6 would change for each input from 0 to 5
Solution attached.
Started with the append route, but then couldn't quite figure out the code for the outputs belonging to the same rotation. Ended overcomplicating it with some macro fun.