Challenge #200: Sudoku Solver
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
patrick_digan
17 - Castor
01-27-2020
11:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Spoiler
I went for an iterative macro to solve the advanced part.
bkclaw113
9 - Comet
01-27-2020
12:39 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Aaron_Harter
11 - Bolide
01-27-2020
12:40 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
jacrae
7 - Meteor
01-27-2020
12:42 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Finished beginner and intermediate!
merigoalie1
6 - Meteoroid
01-27-2020
12:49 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
JosephSerpis
17 - Castor
01-27-2020
12:49 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Kenda
16 - Nebula
01-27-2020
01:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Spoiler
Just getting back to work after vacation so starting with the beginner one so that I can get caught up!
ggruccio
ACE Emeritus
01-27-2020
01:18 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Solved the Advanced One! Wikipedia. Feels like a big accomplishment to get the right answer the first try!
Spoiler
Step1 - Determined all possible missing values across where the numbers 1-9 were present to get all valid rows
Step2 - Got all possible combinations of rows 1-3, 4-6, and 7-9 where numbers 1-9 resided in the 'cubes'
Step3 - Of what remained got all possible combinations where the columns contained 1-9.
This involved using append fields tool...and bringing column values into rows for logical testing (1-9).
Step2 - Got all possible combinations of rows 1-3, 4-6, and 7-9 where numbers 1-9 resided in the 'cubes'
Step3 - Of what remained got all possible combinations where the columns contained 1-9.
This involved using append fields tool...and bringing column values into rows for logical testing (1-9).
OllieClarke
15 - Aurora
01-27-2020
01:21 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Beginner and Intermediate challenges done, I'll be back for advanced I'm sure... Happy 200th everyone 😄
hbraunius
8 - Asteroid
01-27-2020
02:58 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
My beginner and intermediate solution here.