Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEAThis one was a great challenge! Managed all three levels by modifying my macro.
Solved all three.
Challenge 200 file has the beginner solution.
I couldn't find the intermediate solve, but suspect the advanced solution covers it!
Essentially, you need to covert the string into a grid and then the missing numbers.
(batch macro)
Then there is a sequence of macros:
1. clear out rows when a number is discovered.
2. clear out quadrants when a number is discovered.
3. determine if numbers can be eliminated from a cell (repeat step 1-2)
4. optional 4 - there is a rule in sudoku that if you have an exclusive pair 3,4 in row 1 column 1 and row 9 column 1; then no other cell in column 1 can have 3 or 4.... effectively allowing you to clear both values from any remaining cell. Example if row 5 column 1 had 1,3,4,7 - the remaining values would be 1,7
We eventually get to the end.
You definitely need standard macros at least. If you are smarter than me, you could probably put an iterative loop in there deinfed by some mathematical equation that escapes me!
For now only Beginner but definitely I will back to that challenge when will have more time as it is great opportunity learn Alteryx (macros)