Coding Games and Programming Challenges to Code Better
Send your feedback or ask for help here!
Created by @StepBack13,validated by @DeanTheMachine,@FredericLocquet and @SackPhantom.
If you have any issues, feel free to ping them.
Coding Games and Programming Challenges to Code Better
Send your feedback or ask for help here!
Created by @StepBack13,validated by @DeanTheMachine,@FredericLocquet and @SackPhantom.
If you have any issues, feel free to ping them.
In case anyone makes same mistake I did, please note that instruction
3. No rows (or columns) can be duplicates of other rows (or columns).
means
However it does not mean
ie You can have an identical row and column.
Also, note that you don’t need rule 3 (or rule 1) to solve this. Just rule 2 is enough (easy mode). ![]()
Does a reversed row/column count as duplicate?
No. Reversed would be fine. But keep in mind, this ‘Easy mode’ version doesn’t require checking for duplicates. You can solve it with only ‘Rule 2’.
At the same time, in the original puzzle this same rule is formulated clearly, but the second rule there is difficult for me to understand, but here it is clear.
It should have been written like this:
3. No rows (resp. columns) can be duplicates of other rows (resp. columns).