-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use a sudoku-solving algorithm #85
Comments
Actually, it's just logic, not a sudoku-solving algorithm, but anyway, let me give you a concrete example.
For |
Some links on sudoku-solving algorithms:
The problem is that I have no idea how I should implement this... (because I haven't looked into it yet) |
Another example:
In this case, Deck 1 has to be {2, 1, 1} and Deck 2 has to be {4, 4, 3} because it is the only possible case, although it may be evident at first glance. |
What concerns me is that this is clearly a logical but may not worth the computing time. |
If a value
x
must be in one ofm
decks, sayDeck 3
, and if there aren
numbers that can be inDeck 3
, what is the probability thatx
is inDeck 3
? It's complicated. Neither1/m
nor1/n
might be the answer. Since a value in acard
affects the values in the otherdeck
s, you actually have to count the number of possible cases. It's like solving a sudoku. This issue will add on to #94, although not anytime soon.The text was updated successfully, but these errors were encountered: