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]
|
End of preview. Expand
in Data Studio
This dataset contains the evaluation/benchmark for PuzzleEval.
PuzzleEval is a benchmark that evaluates LLMs capability to solve puzzle games such as Mastermind, Word Ladder... etc. This benchmark is designed to test the reasoning capabilities of many reasoning models, while avoiding the possibility of being trained on, as it is possible to generate virtually infinite amount of instances.
Currently, the dataset contains puzzles for:
- Mastermind: Given a secret code containing n-pegs and m-colors, as well as the clues needed to reach the answer, the model needs to be able to guess the secret code based on the clues. The puzzle generation algorithm ensure that there can be only 1 unique solution. This is done by first generating clues for the secret code, then pruning redundant clues (clues that does not change the possible number of secret codes) until 1 solution remain.
- Word ladder: Given a start word and a target word, one must find a chain of other words to link the two, in which two adjacent words (that is, words in successive steps) differ by one letter, note that there are many possible solutions to a word ladder puzzle, but the answer field only provides one of which.
- Quintumble: Based on https://quintumble.com. Quintumble is a word puzzle game in which the player has to rearrange the letters within each column to make 5 words, one for each row. The puzzles are generated by taking 5 random words and arranging them into a grid, and shuffling the columns (except for the first column).
See https://github.com/huynd2210/PuzzleEval/tree/main for puzzle generation script
- Downloads last month
- 6