Hi,
maybe I am mistaken or don't understand the rules completely.
This is the setup Checks:
A 10: b+y+p=even | b+y+p=odd
B 25: number of acending or decending values in a row
C 26: b<3 | y<3 | p<3
D 48: b<y | b<p | y<p
b=y | b=p | y=p
b>y | b>p | y>p
My first guess: b=2, y=4, p=5 --> A=true (sum is odd), C=false, D=true (b<y & b<p & y<p)
Second guess: b=4, y=2, p=5 --> B=true (2 numbers in a row)
This lead me to b=1, y=2, P=5 but was incorrect as the correct code should be b=1, y=4, p=2 but this would lead to D being wrong in my first guess.
What am I missing?
Thanks for a hint.
maybe I am mistaken or don't understand the rules completely.
This is the setup Checks:
A 10: b+y+p=even | b+y+p=odd
B 25: number of acending or decending values in a row
C 26: b<3 | y<3 | p<3
D 48: b<y | b<p | y<p
b=y | b=p | y=p
b>y | b>p | y>p
My first guess: b=2, y=4, p=5 --> A=true (sum is odd), C=false, D=true (b<y & b<p & y<p)
Second guess: b=4, y=2, p=5 --> B=true (2 numbers in a row)
This lead me to b=1, y=2, P=5 but was incorrect as the correct code should be b=1, y=4, p=2 but this would lead to D being wrong in my first guess.
What am I missing?
Thanks for a hint.