question
stringlengths 263
386
| answer
stringlengths 12
12
|
|---|---|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 5, 3, 2] -> 0 Black 0 White
Guess 2: [5, 0, 1, 5] -> 1 Black 0 White
Guess 3: [1, 4, 0, 5] -> 1 Black 0 White
|
[0, 0, 0, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 3, 2, 5] -> 0 Black 1 White
Guess 2: [4, 5, 0, 0] -> 1 Black 1 White
Guess 3: [1, 2, 0, 3] -> 1 Black 1 White
Guess 4: [0, 1, 3, 0] -> 1 Black 2 White
|
[0, 0, 0, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [4, 5, 1, 0] -> 0 Black 1 White
Guess 2: [4, 2, 3, 4] -> 0 Black 1 White
Guess 3: [2, 2, 2, 0] -> 0 Black 2 White
|
[0, 0, 0, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 3, 3, 1] -> 0 Black 1 White
Guess 2: [3, 1, 3, 0] -> 0 Black 2 White
Guess 3: [5, 4, 5, 0] -> 0 Black 1 White
|
[0, 0, 0, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 3, 5, 1] -> 0 Black 0 White
Guess 2: [4, 2, 5, 4] -> 1 Black 0 White
Guess 3: [4, 1, 0, 0] -> 1 Black 2 White
|
[0, 0, 0, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 2, 2, 5] -> 1 Black 0 White
Guess 2: [5, 1, 4, 0] -> 0 Black 2 White
Guess 3: [4, 0, 0, 4] -> 2 Black 0 White
Guess 4: [2, 3, 2, 5] -> 1 Black 0 White
|
[0, 0, 0, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 4, 5, 0] -> 1 Black 0 White
Guess 2: [5, 0, 1, 5] -> 2 Black 0 White
Guess 3: [0, 2, 0, 3] -> 1 Black 1 White
|
[0, 0, 1, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 0, 1, 5] -> 2 Black 1 White
Guess 2: [3, 2, 0, 2] -> 0 Black 1 White
Guess 3: [0, 2, 3, 0] -> 1 Black 1 White
Guess 4: [0, 1, 4, 2] -> 1 Black 1 White
|
[0, 0, 1, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 0, 1, 4] -> 2 Black 1 White
Guess 2: [3, 5, 0, 0] -> 0 Black 2 White
Guess 3: [3, 0, 3, 1] -> 1 Black 1 White
Guess 4: [5, 0, 1, 5] -> 2 Black 0 White
|
[0, 0, 1, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 4, 4, 4] -> 0 Black 0 White
Guess 2: [2, 5, 3, 5] -> 0 Black 1 White
Guess 3: [1, 1, 5, 3] -> 1 Black 1 White
Guess 4: [3, 3, 2, 5] -> 0 Black 1 White
Guess 5: [4, 1, 0, 3] -> 1 Black 2 White
|
[0, 0, 1, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 4, 5, 0] -> 0 Black 2 White
Guess 2: [0, 3, 4, 2] -> 1 Black 1 White
Guess 3: [0, 0, 2, 0] -> 2 Black 0 White
Guess 4: [5, 5, 0, 0] -> 0 Black 2 White
|
[0, 0, 1, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [0, 1, 3, 5] -> 2 Black 1 White
Guess 2: [4, 3, 0, 4] -> 0 Black 1 White
Guess 3: [3, 3, 4, 2] -> 0 Black 0 White
Guess 4: [5, 0, 3, 4] -> 1 Black 1 White
|
[0, 0, 1, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 1, 0, 1] -> 0 Black 1 White
Guess 2: [5, 5, 5, 4] -> 0 Black 0 White
Guess 3: [4, 2, 2, 3] -> 1 Black 0 White
|
[0, 0, 2, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 1, 2, 2] -> 1 Black 1 White
Guess 2: [1, 3, 0, 4] -> 0 Black 2 White
Guess 3: [5, 5, 2, 4] -> 1 Black 0 White
Guess 4: [5, 3, 0, 1] -> 1 Black 1 White
|
[0, 0, 2, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 1, 3, 2] -> 1 Black 0 White
Guess 2: [1, 0, 2, 0] -> 2 Black 1 White
Guess 3: [3, 2, 0, 0] -> 0 Black 3 White
|
[0, 0, 2, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 1, 0, 2] -> 0 Black 2 White
Guess 2: [4, 1, 5, 5] -> 0 Black 0 White
Guess 3: [3, 1, 0, 0] -> 0 Black 3 White
|
[0, 0, 2, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 1, 2, 4] -> 2 Black 0 White
Guess 2: [1, 3, 0, 4] -> 1 Black 1 White
Guess 3: [3, 1, 4, 4] -> 1 Black 0 White
Guess 4: [2, 0, 5, 4] -> 2 Black 1 White
|
[0, 0, 2, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 0, 1, 0] -> 1 Black 1 White
Guess 2: [2, 5, 2, 2] -> 1 Black 1 White
Guess 3: [4, 4, 3, 2] -> 0 Black 1 White
Guess 4: [5, 0, 2, 0] -> 2 Black 2 White
|
[0, 0, 2, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 2, 2, 1] -> 0 Black 1 White
Guess 2: [0, 3, 0, 3] -> 1 Black 2 White
Guess 3: [4, 4, 5, 1] -> 0 Black 0 White
|
[0, 0, 3, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 1, 1, 0] -> 0 Black 3 White
Guess 2: [4, 1, 0, 1] -> 1 Black 1 White
Guess 3: [0, 0, 4, 2] -> 2 Black 0 White
|
[0, 0, 3, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 5, 4, 0] -> 0 Black 2 White
Guess 2: [4, 1, 5, 5] -> 0 Black 0 White
Guess 3: [1, 3, 5, 3] -> 0 Black 1 White
Guess 4: [5, 0, 0, 4] -> 1 Black 1 White
|
[0, 0, 3, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 2, 3, 0] -> 1 Black 1 White
Guess 2: [0, 1, 0, 3] -> 2 Black 1 White
Guess 3: [1, 4, 0, 4] -> 0 Black 1 White
|
[0, 0, 3, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 3, 1, 3] -> 0 Black 1 White
Guess 2: [4, 1, 5, 0] -> 0 Black 2 White
Guess 3: [0, 5, 0, 4] -> 2 Black 1 White
|
[0, 0, 3, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 1, 5, 3] -> 0 Black 2 White
Guess 2: [2, 4, 5, 1] -> 0 Black 1 White
Guess 3: [0, 0, 2, 1] -> 2 Black 0 White
|
[0, 0, 3, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 3, 2, 4] -> 0 Black 1 White
Guess 2: [3, 4, 0, 3] -> 0 Black 2 White
Guess 3: [0, 3, 0, 4] -> 1 Black 2 White
Guess 4: [1, 3, 5, 5] -> 0 Black 0 White
|
[0, 0, 4, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 1, 4, 3] -> 1 Black 1 White
Guess 2: [2, 4, 2, 0] -> 0 Black 2 White
Guess 3: [4, 3, 2, 3] -> 0 Black 1 White
Guess 4: [2, 4, 4, 2] -> 1 Black 0 White
Guess 5: [1, 0, 5, 4] -> 1 Black 2 White
|
[0, 0, 4, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 2, 5, 3] -> 0 Black 1 White
Guess 2: [3, 4, 0, 5] -> 0 Black 2 White
Guess 3: [2, 4, 4, 1] -> 1 Black 1 White
Guess 4: [1, 0, 2, 0] -> 1 Black 2 White
|
[0, 0, 4, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 4, 2, 0] -> 0 Black 2 White
Guess 2: [0, 0, 1, 2] -> 2 Black 0 White
Guess 3: [0, 4, 0, 1] -> 1 Black 2 White
Guess 4: [5, 2, 1, 4] -> 0 Black 1 White
|
[0, 0, 4, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 4, 0, 2] -> 0 Black 2 White
Guess 2: [3, 0, 0, 4] -> 2 Black 1 White
Guess 3: [0, 5, 3, 5] -> 1 Black 0 White
Guess 4: [1, 4, 0, 1] -> 0 Black 2 White
|
[0, 0, 4, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 4, 5, 5] -> 1 Black 1 White
Guess 2: [2, 0, 4, 2] -> 2 Black 0 White
Guess 3: [4, 1, 3, 2] -> 0 Black 1 White
|
[0, 0, 4, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [0, 4, 0, 3] -> 1 Black 1 White
Guess 2: [3, 5, 4, 0] -> 1 Black 1 White
Guess 3: [1, 0, 1, 3] -> 1 Black 0 White
Guess 4: [3, 5, 5, 1] -> 1 Black 0 White
|
[0, 0, 5, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 3, 1, 3] -> 0 Black 2 White
Guess 2: [0, 0, 3, 3] -> 2 Black 0 White
Guess 3: [3, 3, 4, 2] -> 0 Black 0 White
|
[0, 0, 5, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 3, 0, 1] -> 0 Black 2 White
Guess 2: [0, 0, 4, 1] -> 2 Black 0 White
Guess 3: [1, 4, 3, 1] -> 0 Black 0 White
Guess 4: [3, 5, 3, 5] -> 0 Black 1 White
|
[0, 0, 5, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 0, 2, 4] -> 1 Black 0 White
Guess 2: [2, 1, 2, 0] -> 0 Black 1 White
Guess 3: [0, 3, 3, 4] -> 1 Black 1 White
Guess 4: [1, 2, 0, 5] -> 0 Black 2 White
|
[0, 0, 5, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 2, 2, 0] -> 0 Black 1 White
Guess 2: [4, 2, 5, 2] -> 1 Black 1 White
Guess 3: [2, 5, 0, 0] -> 0 Black 3 White
|
[0, 0, 5, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 1, 5, 5] -> 2 Black 0 White
Guess 2: [0, 3, 3, 4] -> 1 Black 0 White
Guess 3: [4, 5, 1, 3] -> 0 Black 1 White
|
[0, 0, 5, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 0, 1, 2] -> 0 Black 2 White
Guess 2: [0, 1, 1, 3] -> 2 Black 0 White
Guess 3: [2, 3, 5, 5] -> 0 Black 0 White
Guess 4: [4, 2, 5, 1] -> 0 Black 1 White
|
[0, 1, 0, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 1, 5, 1] -> 2 Black 0 White
Guess 2: [4, 4, 2, 2] -> 0 Black 0 White
Guess 3: [3, 5, 1, 5] -> 0 Black 1 White
Guess 4: [0, 3, 3, 5] -> 1 Black 0 White
|
[0, 1, 0, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [0, 0, 0, 2] -> 3 Black 0 White
Guess 2: [3, 3, 5, 0] -> 0 Black 1 White
Guess 3: [1, 0, 1, 3] -> 0 Black 2 White
|
[0, 1, 0, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 2, 2, 1] -> 0 Black 1 White
Guess 2: [1, 3, 4, 1] -> 0 Black 2 White
Guess 3: [2, 1, 2, 3] -> 2 Black 0 White
Guess 4: [0, 1, 3, 5] -> 2 Black 1 White
|
[0, 1, 0, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 2, 1, 0] -> 0 Black 2 White
Guess 2: [0, 2, 5, 0] -> 1 Black 1 White
Guess 3: [4, 5, 0, 4] -> 2 Black 0 White
|
[0, 1, 0, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 0, 5, 2] -> 0 Black 3 White
Guess 2: [2, 0, 1, 5] -> 1 Black 2 White
Guess 3: [2, 1, 3, 3] -> 1 Black 0 White
Guess 4: [0, 4, 3, 1] -> 1 Black 1 White
|
[0, 1, 0, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [4, 3, 4, 2] -> 0 Black 0 White
Guess 2: [0, 1, 5, 3] -> 2 Black 0 White
Guess 3: [1, 4, 3, 1] -> 0 Black 2 White
|
[0, 1, 1, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [4, 4, 1, 1] -> 2 Black 0 White
Guess 2: [5, 1, 4, 5] -> 1 Black 0 White
Guess 3: [0, 1, 3, 5] -> 2 Black 0 White
|
[0, 1, 1, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 4, 3, 4] -> 0 Black 0 White
Guess 2: [4, 1, 4, 1] -> 1 Black 1 White
Guess 3: [5, 1, 3, 0] -> 1 Black 1 White
Guess 4: [0, 2, 4, 3] -> 1 Black 1 White
|
[0, 1, 1, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 5, 4, 3] -> 1 Black 0 White
Guess 2: [4, 2, 4, 5] -> 0 Black 0 White
Guess 3: [2, 0, 3, 4] -> 0 Black 2 White
Guess 4: [1, 1, 0, 0] -> 1 Black 2 White
|
[0, 1, 1, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 4, 3, 2] -> 0 Black 1 White
Guess 2: [2, 5, 4, 0] -> 0 Black 2 White
Guess 3: [3, 1, 2, 2] -> 1 Black 0 White
Guess 4: [5, 0, 1, 1] -> 1 Black 2 White
Guess 5: [3, 4, 5, 1] -> 0 Black 2 White
|
[0, 1, 1, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 4, 2, 3] -> 0 Black 1 White
Guess 2: [0, 4, 1, 4] -> 2 Black 0 White
Guess 3: [5, 1, 0, 5] -> 2 Black 1 White
|
[0, 1, 1, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 1, 0, 1] -> 1 Black 1 White
Guess 2: [0, 5, 5, 3] -> 1 Black 0 White
Guess 3: [4, 5, 3, 2] -> 0 Black 1 White
Guess 4: [2, 0, 4, 1] -> 0 Black 3 White
|
[0, 1, 2, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 3, 2, 1] -> 2 Black 0 White
Guess 2: [1, 4, 4, 5] -> 0 Black 1 White
Guess 3: [5, 3, 3, 2] -> 0 Black 1 White
Guess 4: [2, 3, 2, 1] -> 2 Black 0 White
Guess 5: [4, 1, 5, 5] -> 1 Black 0 White
|
[0, 1, 2, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 4, 0, 2] -> 1 Black 2 White
Guess 2: [1, 1, 3, 0] -> 1 Black 1 White
Guess 3: [2, 2, 2, 2] -> 2 Black 0 White
|
[0, 1, 2, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 1, 1, 3] -> 2 Black 0 White
Guess 2: [5, 1, 0, 5] -> 1 Black 1 White
Guess 3: [3, 5, 3, 0] -> 0 Black 2 White
Guess 4: [4, 4, 1, 0] -> 0 Black 2 White
|
[0, 1, 2, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 1, 3, 1] -> 1 Black 1 White
Guess 2: [5, 1, 2, 4] -> 3 Black 0 White
Guess 3: [4, 5, 1, 0] -> 0 Black 3 White
|
[0, 1, 2, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 1, 1, 0] -> 1 Black 2 White
Guess 2: [0, 2, 2, 2] -> 2 Black 0 White
Guess 3: [0, 2, 5, 2] -> 1 Black 2 White
|
[0, 1, 2, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 3, 3, 3] -> 1 Black 1 White
Guess 2: [0, 2, 1, 3] -> 1 Black 2 White
Guess 3: [3, 3, 2, 1] -> 0 Black 2 White
Guess 4: [0, 1, 4, 5] -> 2 Black 0 White
|
[0, 1, 3, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 3, 5, 3] -> 0 Black 2 White
Guess 2: [4, 5, 2, 4] -> 0 Black 0 White
Guess 3: [0, 1, 2, 1] -> 3 Black 0 White
|
[0, 1, 3, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [0, 3, 3, 1] -> 2 Black 1 White
Guess 2: [1, 3, 0, 1] -> 0 Black 3 White
Guess 3: [4, 3, 2, 4] -> 0 Black 2 White
|
[0, 1, 3, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 1, 0, 2] -> 1 Black 1 White
Guess 2: [1, 0, 2, 3] -> 1 Black 2 White
Guess 3: [2, 1, 0, 3] -> 2 Black 1 White
Guess 4: [4, 1, 0, 4] -> 1 Black 1 White
Guess 5: [2, 3, 1, 4] -> 0 Black 2 White
|
[0, 1, 3, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 1, 5, 4] -> 2 Black 0 White
Guess 2: [2, 1, 2, 3] -> 1 Black 1 White
Guess 3: [3, 0, 0, 0] -> 0 Black 2 White
|
[0, 1, 3, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 3, 3, 2] -> 1 Black 1 White
Guess 2: [0, 1, 4, 1] -> 2 Black 0 White
Guess 3: [3, 2, 4, 0] -> 0 Black 2 White
Guess 4: [3, 1, 0, 3] -> 1 Black 2 White
|
[0, 1, 3, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [0, 4, 1, 3] -> 1 Black 2 White
Guess 2: [2, 0, 1, 2] -> 0 Black 2 White
Guess 3: [3, 1, 2, 2] -> 1 Black 0 White
Guess 4: [1, 0, 3, 0] -> 1 Black 2 White
|
[0, 1, 4, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [4, 4, 1, 5] -> 0 Black 2 White
Guess 2: [1, 5, 4, 0] -> 1 Black 2 White
Guess 3: [1, 5, 3, 2] -> 0 Black 1 White
Guess 4: [2, 0, 2, 3] -> 0 Black 1 White
|
[0, 1, 4, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [0, 3, 0, 5] -> 1 Black 0 White
Guess 2: [0, 2, 3, 0] -> 1 Black 1 White
Guess 3: [4, 4, 0, 3] -> 0 Black 2 White
Guess 4: [4, 0, 5, 2] -> 1 Black 2 White
|
[0, 1, 4, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [0, 4, 3, 1] -> 1 Black 3 White
Guess 2: [1, 3, 5, 2] -> 0 Black 2 White
Guess 3: [1, 0, 5, 0] -> 0 Black 2 White
|
[0, 1, 4, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 1, 0, 2] -> 1 Black 1 White
Guess 2: [4, 0, 1, 0] -> 0 Black 3 White
Guess 3: [5, 4, 3, 0] -> 0 Black 2 White
Guess 4: [1, 2, 4, 5] -> 1 Black 1 White
Guess 5: [4, 0, 5, 0] -> 0 Black 2 White
|
[0, 1, 4, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [0, 1, 4, 0] -> 3 Black 0 White
Guess 2: [5, 4, 4, 3] -> 1 Black 1 White
Guess 3: [5, 1, 2, 1] -> 1 Black 1 White
|
[0, 1, 4, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 1, 3, 0] -> 2 Black 1 White
Guess 2: [2, 3, 5, 3] -> 1 Black 0 White
Guess 3: [5, 0, 5, 0] -> 2 Black 1 White
|
[0, 1, 5, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [4, 2, 3, 1] -> 1 Black 0 White
Guess 2: [1, 1, 0, 3] -> 1 Black 2 White
Guess 3: [1, 5, 5, 4] -> 1 Black 1 White
|
[0, 1, 5, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 1, 1, 1] -> 1 Black 1 White
Guess 2: [5, 1, 5, 5] -> 2 Black 0 White
Guess 3: [2, 0, 1, 3] -> 0 Black 3 White
Guess 4: [3, 5, 3, 5] -> 0 Black 1 White
|
[0, 1, 5, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 4, 4, 1] -> 0 Black 2 White
Guess 2: [5, 0, 2, 3] -> 1 Black 2 White
Guess 3: [2, 3, 2, 5] -> 0 Black 2 White
Guess 4: [4, 5, 4, 2] -> 0 Black 1 White
|
[0, 1, 5, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [0, 0, 3, 4] -> 2 Black 0 White
Guess 2: [2, 1, 0, 4] -> 2 Black 1 White
Guess 3: [5, 0, 3, 1] -> 0 Black 3 White
|
[0, 1, 5, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 1, 5, 0] -> 2 Black 1 White
Guess 2: [0, 4, 2, 3] -> 1 Black 0 White
Guess 3: [3, 0, 5, 3] -> 1 Black 1 White
|
[0, 1, 5, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [0, 3, 2, 4] -> 1 Black 1 White
Guess 2: [3, 5, 3, 0] -> 1 Black 0 White
Guess 3: [3, 4, 1, 4] -> 0 Black 0 White
Guess 4: [1, 3, 2, 2] -> 0 Black 1 White
|
[0, 2, 0, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 5, 3, 2] -> 0 Black 2 White
Guess 2: [4, 3, 0, 0] -> 1 Black 1 White
Guess 3: [4, 1, 1, 5] -> 0 Black 1 White
Guess 4: [2, 1, 2, 4] -> 0 Black 2 White
|
[0, 2, 0, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 3, 2, 0] -> 0 Black 2 White
Guess 2: [1, 5, 3, 2] -> 1 Black 0 White
Guess 3: [3, 0, 3, 3] -> 0 Black 1 White
Guess 4: [2, 5, 5, 4] -> 0 Black 1 White
|
[0, 2, 0, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [4, 0, 0, 5] -> 1 Black 1 White
Guess 2: [3, 2, 3, 0] -> 1 Black 2 White
Guess 3: [3, 3, 0, 4] -> 1 Black 1 White
Guess 4: [5, 4, 4, 3] -> 1 Black 0 White
|
[0, 2, 0, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 1, 4, 0] -> 0 Black 2 White
Guess 2: [4, 0, 2, 3] -> 0 Black 3 White
Guess 3: [5, 2, 2, 3] -> 1 Black 0 White
|
[0, 2, 0, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [4, 4, 2, 1] -> 0 Black 1 White
Guess 2: [5, 2, 0, 2] -> 2 Black 1 White
Guess 3: [0, 2, 0, 4] -> 3 Black 0 White
|
[0, 2, 0, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [4, 0, 3, 4] -> 0 Black 1 White
Guess 2: [0, 2, 5, 4] -> 2 Black 0 White
Guess 3: [0, 1, 0, 3] -> 1 Black 2 White
|
[0, 2, 1, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 2, 1, 4] -> 2 Black 0 White
Guess 2: [0, 1, 0, 0] -> 1 Black 1 White
Guess 3: [3, 2, 2, 5] -> 1 Black 0 White
Guess 4: [0, 4, 1, 2] -> 2 Black 1 White
|
[0, 2, 1, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 2, 5, 1] -> 1 Black 1 White
Guess 2: [1, 1, 0, 2] -> 1 Black 2 White
Guess 3: [2, 2, 0, 2] -> 2 Black 1 White
|
[0, 2, 1, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 3, 1, 3] -> 2 Black 1 White
Guess 2: [3, 1, 3, 2] -> 0 Black 3 White
Guess 3: [1, 2, 1, 0] -> 2 Black 1 White
|
[0, 2, 1, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 3, 3, 3] -> 0 Black 0 White
Guess 2: [2, 3, 1, 2] -> 1 Black 1 White
Guess 3: [5, 5, 0, 4] -> 1 Black 1 White
Guess 4: [4, 1, 0, 3] -> 0 Black 3 White
|
[0, 2, 1, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 0, 1, 1] -> 1 Black 2 White
Guess 2: [4, 5, 3, 0] -> 0 Black 2 White
Guess 3: [5, 3, 1, 3] -> 1 Black 1 White
Guess 4: [0, 4, 3, 2] -> 1 Black 1 White
|
[0, 2, 1, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 1, 5, 4] -> 0 Black 0 White
Guess 2: [5, 0, 2, 5] -> 1 Black 1 White
Guess 3: [5, 0, 3, 5] -> 0 Black 1 White
Guess 4: [0, 1, 1, 2] -> 1 Black 1 White
|
[0, 2, 2, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 4, 1, 1] -> 1 Black 0 White
Guess 2: [2, 1, 3, 1] -> 1 Black 1 White
Guess 3: [2, 4, 3, 2] -> 0 Black 2 White
|
[0, 2, 2, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [4, 1, 4, 0] -> 0 Black 1 White
Guess 2: [5, 4, 5, 5] -> 0 Black 0 White
Guess 3: [4, 4, 2, 4] -> 1 Black 0 White
Guess 4: [3, 2, 1, 5] -> 1 Black 0 White
|
[0, 2, 2, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 2, 2, 0] -> 2 Black 2 White
Guess 2: [1, 2, 3, 3] -> 2 Black 0 White
Guess 3: [1, 2, 4, 0] -> 1 Black 1 White
|
[0, 2, 2, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 4, 2, 2] -> 1 Black 2 White
Guess 2: [5, 3, 3, 5] -> 0 Black 0 White
Guess 3: [1, 1, 5, 2] -> 0 Black 1 White
Guess 4: [2, 4, 2, 4] -> 2 Black 1 White
|
[0, 2, 2, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [3, 4, 0, 2] -> 0 Black 2 White
Guess 2: [0, 1, 2, 5] -> 3 Black 0 White
Guess 3: [1, 0, 4, 3] -> 0 Black 1 White
Guess 4: [5, 5, 3, 5] -> 1 Black 0 White
|
[0, 2, 2, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 4, 1, 1] -> 0 Black 1 White
Guess 2: [5, 2, 0, 4] -> 1 Black 1 White
Guess 3: [1, 2, 0, 0] -> 2 Black 1 White
Guess 4: [5, 1, 5, 3] -> 0 Black 1 White
|
[0, 2, 3, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 5, 2, 4] -> 0 Black 2 White
Guess 2: [0, 1, 5, 4] -> 1 Black 1 White
Guess 3: [1, 1, 2, 4] -> 0 Black 2 White
Guess 4: [5, 3, 1, 5] -> 0 Black 2 White
|
[0, 2, 3, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 2, 0, 5] -> 1 Black 1 White
Guess 2: [2, 0, 3, 0] -> 1 Black 2 White
Guess 3: [4, 2, 5, 2] -> 2 Black 0 White
Guess 4: [3, 5, 0, 1] -> 0 Black 2 White
|
[0, 2, 3, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [4, 4, 3, 0] -> 1 Black 1 White
Guess 2: [1, 0, 5, 2] -> 0 Black 2 White
Guess 3: [1, 4, 1, 2] -> 0 Black 1 White
Guess 4: [4, 1, 1, 0] -> 0 Black 1 White
|
[0, 2, 3, 3]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [0, 1, 4, 0] -> 1 Black 1 White
Guess 2: [5, 4, 3, 2] -> 1 Black 2 White
Guess 3: [5, 2, 2, 4] -> 2 Black 0 White
|
[0, 2, 3, 4]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 0, 3, 3] -> 1 Black 2 White
Guess 2: [0, 5, 1, 2] -> 1 Black 2 White
Guess 3: [1, 0, 0, 0] -> 0 Black 1 White
Guess 4: [2, 3, 5, 1] -> 0 Black 3 White
|
[0, 2, 3, 5]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 5, 1, 0] -> 1 Black 0 White
Guess 2: [0, 4, 2, 4] -> 1 Black 2 White
Guess 3: [0, 1, 3, 5] -> 1 Black 0 White
|
[0, 2, 4, 0]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [2, 0, 1, 3] -> 0 Black 3 White
Guess 2: [3, 3, 4, 0] -> 1 Black 1 White
Guess 3: [5, 4, 0, 2] -> 0 Black 3 White
Guess 4: [5, 5, 5, 1] -> 1 Black 0 White
|
[0, 2, 4, 1]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [5, 0, 4, 2] -> 2 Black 1 White
Guess 2: [0, 3, 0, 1] -> 1 Black 0 White
Guess 3: [5, 1, 2, 4] -> 0 Black 2 White
Guess 4: [4, 3, 4, 4] -> 1 Black 0 White
|
[0, 2, 4, 2]
|
Given a mastermind puzzle with 6 colors and 4 pegs
Find the secret code based on the following clues:
Black = Correct color and position.
White = Correct color but wrong position.
Guess 1: [1, 3, 4, 3] -> 2 Black 0 White
Guess 2: [2, 2, 3, 5] -> 1 Black 1 White
Guess 3: [1, 0, 1, 0] -> 0 Black 1 White
Guess 4: [3, 0, 3, 2] -> 0 Black 3 White
|
[0, 2, 4, 3]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.