image imagewidth (px) 512 512 | problem stringlengths 75 94 | answer stringclasses 91
values | solution stringlengths 147 558 | metadata dict |
|---|---|---|---|---|
There are 6 shapes on a 8x8 grid. Which shape is closest to the yellow square? | (2, 3) | Target shape: yellow square at (0, 4)
Distance from target shape to green rectangle at (2, 3): 3
Distance from target shape to gray circle at (4, 0): 8
Distance from target shape to red square at (1, 0): 5
Distance from target shape to cyan equilateral_triangle at (7, 5): 8
Distance from target shape to orange pentagon... | {
"closest_shape": {
"color": "green",
"grid_position": [
2,
3
],
"index": 0,
"shape": "rectangle"
},
"grid_size": 8,
"shapes": [
{
"color": "green",
"grid_position": [
2,
3
],
"index": 0,
"shape": "rectangle"
},
{
"... | |
There are 8 shapes on a 8x8 grid. Which shape is closest to the yellow trapezoid? | (0, 1) | Target shape: yellow trapezoid at (1, 1)
Distance from target shape to brown right_triangle at (0, 1): 1
Distance from target shape to gray square at (2, 1): 1
Distance from target shape to orange hexagon at (4, 2): 4
Distance from target shape to red equilateral_triangle at (7, 5): 10
Distance from target shape to cya... | {
"closest_shape": {
"color": "brown",
"grid_position": [
0,
1
],
"index": 0,
"shape": "right_triangle"
},
"grid_size": 8,
"shapes": [
{
"color": "brown",
"grid_position": [
0,
1
],
"index": 0,
"shape": "right_triangle"
},
... | |
There are 2 shapes on a 8x8 grid. Which shape is closest to the orange circle? | (0, 6) | Target shape: orange circle at (2, 0)
Distance from target shape to blue right_triangle at (0, 6): 8
Closest shape is the blue right_triangle at (0, 6) with distance 8 | {
"closest_shape": {
"color": "blue",
"grid_position": [
0,
6
],
"index": 1,
"shape": "right_triangle"
},
"grid_size": 8,
"shapes": [
{
"color": "orange",
"grid_position": [
2,
0
],
"index": 0,
"shape": "circle"
},
{
... | |
There are 2 shapes on a 9x9 grid. Which shape is closest to the yellow square? | (2, 3) | Target shape: yellow square at (8, 5)
Distance from target shape to purple circle at (2, 3): 8
Closest shape is the purple circle at (2, 3) with distance 8 | {
"closest_shape": {
"color": "purple",
"grid_position": [
2,
3
],
"index": 1,
"shape": "circle"
},
"grid_size": 9,
"shapes": [
{
"color": "yellow",
"grid_position": [
8,
5
],
"index": 0,
"shape": "square"
},
{
"colo... | |
There are 5 shapes on a 4x4 grid. Which shape is closest to the pink equilateral_triangle? | (1, 1) | Target shape: pink equilateral_triangle at (3, 0)
Distance from target shape to blue circle at (2, 3): 4
Distance from target shape to gray trapezoid at (1, 1): 3
Distance from target shape to yellow hexagon at (0, 0): 3
Distance from target shape to purple trapezoid at (0, 2): 5
Closest shape is the gray trapezoid at ... | {
"closest_shape": {
"color": "gray",
"grid_position": [
1,
1
],
"index": 1,
"shape": "trapezoid"
},
"grid_size": 4,
"shapes": [
{
"color": "blue",
"grid_position": [
2,
3
],
"index": 0,
"shape": "circle"
},
{
"color... | |
There are 3 shapes on a 10x10 grid. Which shape is closest to the purple pentagon? | (1, 3) | Target shape: purple pentagon at (1, 9)
Distance from target shape to gray hexagon at (1, 3): 6
Distance from target shape to red rectangle at (8, 1): 15
Closest shape is the gray hexagon at (1, 3) with distance 6 | {
"closest_shape": {
"color": "gray",
"grid_position": [
1,
3
],
"index": 1,
"shape": "hexagon"
},
"grid_size": 10,
"shapes": [
{
"color": "purple",
"grid_position": [
1,
9
],
"index": 0,
"shape": "pentagon"
},
{
"co... | |
There are 6 shapes on a 6x6 grid. Which shape is closest to the cyan pentagon? | (4, 2) | Target shape: cyan pentagon at (5, 2)
Distance from target shape to gray hexagon at (5, 0): 2
Distance from target shape to pink trapezoid at (4, 2): 1
Distance from target shape to yellow right_triangle at (2, 5): 6
Distance from target shape to orange circle at (2, 0): 5
Distance from target shape to brown square at ... | {
"closest_shape": {
"color": "pink",
"grid_position": [
4,
2
],
"index": 1,
"shape": "trapezoid"
},
"grid_size": 6,
"shapes": [
{
"color": "gray",
"grid_position": [
5,
0
],
"index": 0,
"shape": "hexagon"
},
{
"colo... | |
There are 3 shapes on a 3x3 grid. Which shape is closest to the blue equilateral_triangle? | (1, 2) | Target shape: blue equilateral_triangle at (2, 2)
Distance from target shape to red trapezoid at (0, 1): 3
Distance from target shape to pink pentagon at (1, 2): 1
Closest shape is the pink pentagon at (1, 2) with distance 1 | {
"closest_shape": {
"color": "pink",
"grid_position": [
1,
2
],
"index": 2,
"shape": "pentagon"
},
"grid_size": 3,
"shapes": [
{
"color": "blue",
"grid_position": [
2,
2
],
"index": 0,
"shape": "equilateral_triangle"
},
{... | |
There are 2 shapes on a 3x3 grid. Which shape is closest to the gray square? | (1, 1) | Target shape: gray square at (2, 0)
Distance from target shape to red pentagon at (1, 1): 2
Closest shape is the red pentagon at (1, 1) with distance 2 | {
"closest_shape": {
"color": "red",
"grid_position": [
1,
1
],
"index": 1,
"shape": "pentagon"
},
"grid_size": 3,
"shapes": [
{
"color": "gray",
"grid_position": [
2,
0
],
"index": 0,
"shape": "square"
},
{
"color":... | |
There are 8 shapes on a 8x8 grid. Which shape is closest to the gray rectangle? | (2, 7) | Target shape: gray rectangle at (0, 7)
Distance from target shape to purple right_triangle at (2, 4): 5
Distance from target shape to blue hexagon at (5, 3): 9
Distance from target shape to pink hexagon at (1, 5): 3
Distance from target shape to cyan rectangle at (7, 1): 13
Distance from target shape to orange equilate... | {
"closest_shape": {
"color": "brown",
"grid_position": [
2,
7
],
"index": 6,
"shape": "equilateral_triangle"
},
"grid_size": 8,
"shapes": [
{
"color": "gray",
"grid_position": [
0,
7
],
"index": 0,
"shape": "rectangle"
},
... | |
There are 4 shapes on a 9x9 grid. Which shape is closest to the cyan equilateral_triangle? | (4, 2) | Target shape: cyan equilateral_triangle at (2, 2)
Distance from target shape to pink square at (4, 2): 2
Distance from target shape to green circle at (2, 0): 2
Distance from target shape to gray hexagon at (8, 6): 10
Closest shape is the pink square at (4, 2) with distance 2 | {
"closest_shape": {
"color": "pink",
"grid_position": [
4,
2
],
"index": 0,
"shape": "square"
},
"grid_size": 9,
"shapes": [
{
"color": "pink",
"grid_position": [
4,
2
],
"index": 0,
"shape": "square"
},
{
"color": ... | |
There are 6 shapes on a 5x5 grid. Which shape is closest to the red equilateral_triangle? | (1, 2) | Target shape: red equilateral_triangle at (1, 4)
Distance from target shape to pink circle at (4, 4): 3
Distance from target shape to yellow pentagon at (4, 3): 4
Distance from target shape to purple right_triangle at (1, 0): 4
Distance from target shape to gray hexagon at (3, 2): 4
Distance from target shape to brown ... | {
"closest_shape": {
"color": "brown",
"grid_position": [
1,
2
],
"index": 5,
"shape": "hexagon"
},
"grid_size": 5,
"shapes": [
{
"color": "pink",
"grid_position": [
4,
4
],
"index": 0,
"shape": "circle"
},
{
"color"... | |
There are 3 shapes on a 10x10 grid. Which shape is closest to the red square? | (6, 2) | Target shape: red square at (6, 6)
Distance from target shape to orange trapezoid at (6, 2): 4
Distance from target shape to brown right_triangle at (5, 1): 6
Closest shape is the orange trapezoid at (6, 2) with distance 4 | {
"closest_shape": {
"color": "orange",
"grid_position": [
6,
2
],
"index": 0,
"shape": "trapezoid"
},
"grid_size": 10,
"shapes": [
{
"color": "orange",
"grid_position": [
6,
2
],
"index": 0,
"shape": "trapezoid"
},
{
... | |
There are 4 shapes on a 8x8 grid. Which shape is closest to the green equilateral_triangle? | (3, 7) | Target shape: green equilateral_triangle at (7, 6)
Distance from target shape to yellow rectangle at (2, 1): 10
Distance from target shape to cyan equilateral_triangle at (3, 7): 5
Distance from target shape to red trapezoid at (0, 2): 11
Closest shape is the cyan equilateral_triangle at (3, 7) with distance 5 | {
"closest_shape": {
"color": "cyan",
"grid_position": [
3,
7
],
"index": 2,
"shape": "equilateral_triangle"
},
"grid_size": 8,
"shapes": [
{
"color": "green",
"grid_position": [
7,
6
],
"index": 0,
"shape": "equilateral_triangle"... | |
There are 4 shapes on a 6x6 grid. Which shape is closest to the purple square? | (2, 3) | Target shape: purple square at (2, 2)
Distance from target shape to cyan equilateral_triangle at (0, 3): 3
Distance from target shape to red trapezoid at (0, 4): 4
Distance from target shape to blue trapezoid at (2, 3): 1
Closest shape is the blue trapezoid at (2, 3) with distance 1 | {
"closest_shape": {
"color": "blue",
"grid_position": [
2,
3
],
"index": 3,
"shape": "trapezoid"
},
"grid_size": 6,
"shapes": [
{
"color": "purple",
"grid_position": [
2,
2
],
"index": 0,
"shape": "square"
},
{
"col... | |
There are 8 shapes on a 7x7 grid. Which shape is closest to the blue right_triangle? | (1, 1) | Target shape: blue right_triangle at (0, 1)
Distance from target shape to yellow trapezoid at (3, 2): 4
Distance from target shape to gray trapezoid at (5, 6): 10
Distance from target shape to orange pentagon at (4, 3): 6
Distance from target shape to green trapezoid at (1, 1): 1
Distance from target shape to brown hex... | {
"closest_shape": {
"color": "green",
"grid_position": [
1,
1
],
"index": 3,
"shape": "trapezoid"
},
"grid_size": 7,
"shapes": [
{
"color": "yellow",
"grid_position": [
3,
2
],
"index": 0,
"shape": "trapezoid"
},
{
... | |
There are 2 shapes on a 8x8 grid. Which shape is closest to the blue rectangle? | (2, 7) | Target shape: blue rectangle at (1, 4)
Distance from target shape to yellow trapezoid at (2, 7): 4
Closest shape is the yellow trapezoid at (2, 7) with distance 4 | {
"closest_shape": {
"color": "yellow",
"grid_position": [
2,
7
],
"index": 0,
"shape": "trapezoid"
},
"grid_size": 8,
"shapes": [
{
"color": "yellow",
"grid_position": [
2,
7
],
"index": 0,
"shape": "trapezoid"
},
{
... | |
There are 2 shapes on a 6x6 grid. Which shape is closest to the gray circle? | (4, 5) | Target shape: gray circle at (1, 3)
Distance from target shape to yellow equilateral_triangle at (4, 5): 5
Closest shape is the yellow equilateral_triangle at (4, 5) with distance 5 | {
"closest_shape": {
"color": "yellow",
"grid_position": [
4,
5
],
"index": 0,
"shape": "equilateral_triangle"
},
"grid_size": 6,
"shapes": [
{
"color": "yellow",
"grid_position": [
4,
5
],
"index": 0,
"shape": "equilateral_triang... | |
There are 4 shapes on a 3x3 grid. Which shape is closest to the red circle? | (0, 0) | Target shape: red circle at (1, 0)
Distance from target shape to yellow pentagon at (0, 0): 1
Distance from target shape to cyan right_triangle at (2, 0): 1
Distance from target shape to brown hexagon at (0, 2): 3
Closest shape is the yellow pentagon at (0, 0) with distance 1 | {
"closest_shape": {
"color": "yellow",
"grid_position": [
0,
0
],
"index": 0,
"shape": "pentagon"
},
"grid_size": 3,
"shapes": [
{
"color": "yellow",
"grid_position": [
0,
0
],
"index": 0,
"shape": "pentagon"
},
{
"... | |
There are 7 shapes on a 5x5 grid. Which shape is closest to the red hexagon? | (2, 2) | Target shape: red hexagon at (1, 2)
Distance from target shape to orange right_triangle at (2, 0): 3
Distance from target shape to pink square at (2, 1): 2
Distance from target shape to yellow hexagon at (3, 3): 3
Distance from target shape to brown pentagon at (4, 1): 4
Distance from target shape to blue pentagon at (... | {
"closest_shape": {
"color": "blue",
"grid_position": [
2,
2
],
"index": 4,
"shape": "pentagon"
},
"grid_size": 5,
"shapes": [
{
"color": "orange",
"grid_position": [
2,
0
],
"index": 0,
"shape": "right_triangle"
},
{
... | |
There are 2 shapes on a 3x3 grid. Which shape is closest to the purple circle? | (1, 1) | Target shape: purple circle at (2, 2)
Distance from target shape to green square at (1, 1): 2
Closest shape is the green square at (1, 1) with distance 2 | {
"closest_shape": {
"color": "green",
"grid_position": [
1,
1
],
"index": 0,
"shape": "square"
},
"grid_size": 3,
"shapes": [
{
"color": "green",
"grid_position": [
1,
1
],
"index": 0,
"shape": "square"
},
{
"color"... | |
There are 2 shapes on a 3x3 grid. Which shape is closest to the yellow hexagon? | (1, 1) | Target shape: yellow hexagon at (0, 0)
Distance from target shape to orange hexagon at (1, 1): 2
Closest shape is the orange hexagon at (1, 1) with distance 2 | {
"closest_shape": {
"color": "orange",
"grid_position": [
1,
1
],
"index": 1,
"shape": "hexagon"
},
"grid_size": 3,
"shapes": [
{
"color": "yellow",
"grid_position": [
0,
0
],
"index": 0,
"shape": "hexagon"
},
{
"co... | |
There are 6 shapes on a 10x10 grid. Which shape is closest to the orange equilateral_triangle? | (0, 7) | Target shape: orange equilateral_triangle at (3, 5)
Distance from target shape to pink equilateral_triangle at (7, 2): 7
Distance from target shape to cyan circle at (0, 8): 6
Distance from target shape to green pentagon at (8, 2): 8
Distance from target shape to purple square at (0, 7): 5
Distance from target shape to... | {
"closest_shape": {
"color": "purple",
"grid_position": [
0,
7
],
"index": 3,
"shape": "square"
},
"grid_size": 10,
"shapes": [
{
"color": "pink",
"grid_position": [
7,
2
],
"index": 0,
"shape": "equilateral_triangle"
},
... | |
There are 8 shapes on a 9x9 grid. Which shape is closest to the yellow square? | (5, 0) | Target shape: yellow square at (5, 1)
Distance from target shape to green rectangle at (7, 4): 5
Distance from target shape to gray circle at (0, 3): 7
Distance from target shape to blue rectangle at (2, 3): 5
Distance from target shape to brown circle at (5, 8): 7
Distance from target shape to orange right_triangle at... | {
"closest_shape": {
"color": "pink",
"grid_position": [
5,
0
],
"index": 6,
"shape": "right_triangle"
},
"grid_size": 9,
"shapes": [
{
"color": "green",
"grid_position": [
7,
4
],
"index": 0,
"shape": "rectangle"
},
{
... | |
There are 4 shapes on a 5x5 grid. Which shape is closest to the orange equilateral_triangle? | (3, 3) | Target shape: orange equilateral_triangle at (3, 0)
Distance from target shape to purple square at (2, 4): 5
Distance from target shape to brown right_triangle at (3, 3): 3
Distance from target shape to yellow pentagon at (0, 2): 5
Closest shape is the brown right_triangle at (3, 3) with distance 3 | {
"closest_shape": {
"color": "brown",
"grid_position": [
3,
3
],
"index": 2,
"shape": "right_triangle"
},
"grid_size": 5,
"shapes": [
{
"color": "purple",
"grid_position": [
2,
4
],
"index": 0,
"shape": "square"
},
{
... | |
There are 4 shapes on a 4x4 grid. Which shape is closest to the orange hexagon? | (3, 1) | Target shape: orange hexagon at (1, 1)
Distance from target shape to pink square at (3, 1): 2
Distance from target shape to green trapezoid at (2, 3): 3
Distance from target shape to purple square at (3, 0): 3
Closest shape is the pink square at (3, 1) with distance 2 | {
"closest_shape": {
"color": "pink",
"grid_position": [
3,
1
],
"index": 0,
"shape": "square"
},
"grid_size": 4,
"shapes": [
{
"color": "pink",
"grid_position": [
3,
1
],
"index": 0,
"shape": "square"
},
{
"color": ... | |
There are 5 shapes on a 9x9 grid. Which shape is closest to the pink circle? | (2, 4) | Target shape: pink circle at (3, 5)
Distance from target shape to purple hexagon at (2, 4): 2
Distance from target shape to blue rectangle at (0, 5): 3
Distance from target shape to green hexagon at (7, 3): 6
Distance from target shape to yellow circle at (4, 2): 4
Closest shape is the purple hexagon at (2, 4) with dis... | {
"closest_shape": {
"color": "purple",
"grid_position": [
2,
4
],
"index": 1,
"shape": "hexagon"
},
"grid_size": 9,
"shapes": [
{
"color": "pink",
"grid_position": [
3,
5
],
"index": 0,
"shape": "circle"
},
{
"color... | |
There are 6 shapes on a 5x5 grid. Which shape is closest to the yellow right_triangle? | (2, 1) | Target shape: yellow right_triangle at (3, 2)
Distance from target shape to purple circle at (2, 1): 2
Distance from target shape to brown pentagon at (2, 3): 2
Distance from target shape to orange right_triangle at (3, 4): 2
Distance from target shape to green pentagon at (2, 4): 3
Distance from target shape to pink t... | {
"closest_shape": {
"color": "purple",
"grid_position": [
2,
1
],
"index": 0,
"shape": "circle"
},
"grid_size": 5,
"shapes": [
{
"color": "purple",
"grid_position": [
2,
1
],
"index": 0,
"shape": "circle"
},
{
"colo... | |
There are 4 shapes on a 3x3 grid. Which shape is closest to the orange trapezoid? | (0, 0) | Target shape: orange trapezoid at (0, 1)
Distance from target shape to red trapezoid at (1, 0): 2
Distance from target shape to green rectangle at (0, 0): 1
Distance from target shape to gray rectangle at (1, 2): 2
Closest shape is the green rectangle at (0, 0) with distance 1 | {
"closest_shape": {
"color": "green",
"grid_position": [
0,
0
],
"index": 2,
"shape": "rectangle"
},
"grid_size": 3,
"shapes": [
{
"color": "red",
"grid_position": [
1,
0
],
"index": 0,
"shape": "trapezoid"
},
{
"co... | |
There are 5 shapes on a 8x8 grid. Which shape is closest to the purple square? | (4, 7) | Target shape: purple square at (7, 0)
Distance from target shape to red equilateral_triangle at (1, 7): 13
Distance from target shape to blue hexagon at (2, 6): 11
Distance from target shape to cyan rectangle at (1, 5): 11
Distance from target shape to yellow hexagon at (4, 7): 10
Closest shape is the yellow hexagon at... | {
"closest_shape": {
"color": "yellow",
"grid_position": [
4,
7
],
"index": 4,
"shape": "hexagon"
},
"grid_size": 8,
"shapes": [
{
"color": "red",
"grid_position": [
1,
7
],
"index": 0,
"shape": "equilateral_triangle"
},
{... | |
There are 4 shapes on a 8x8 grid. Which shape is closest to the yellow square? | (4, 5) | Target shape: yellow square at (5, 4)
Distance from target shape to red hexagon at (2, 6): 5
Distance from target shape to blue rectangle at (1, 3): 5
Distance from target shape to gray pentagon at (4, 5): 2
Closest shape is the gray pentagon at (4, 5) with distance 2 | {
"closest_shape": {
"color": "gray",
"grid_position": [
4,
5
],
"index": 3,
"shape": "pentagon"
},
"grid_size": 8,
"shapes": [
{
"color": "red",
"grid_position": [
2,
6
],
"index": 0,
"shape": "hexagon"
},
{
"color"... | |
There are 5 shapes on a 3x3 grid. Which shape is closest to the cyan right_triangle? | (1, 0) | Target shape: cyan right_triangle at (2, 0)
Distance from target shape to gray circle at (0, 2): 4
Distance from target shape to red equilateral_triangle at (0, 0): 2
Distance from target shape to purple circle at (1, 0): 1
Distance from target shape to green hexagon at (2, 2): 2
Closest shape is the purple circle at (... | {
"closest_shape": {
"color": "purple",
"grid_position": [
1,
0
],
"index": 3,
"shape": "circle"
},
"grid_size": 3,
"shapes": [
{
"color": "gray",
"grid_position": [
0,
2
],
"index": 0,
"shape": "circle"
},
{
"color"... | |
There are 8 shapes on a 3x3 grid. Which shape is closest to the cyan right_triangle? | (0, 0) | Target shape: cyan right_triangle at (0, 1)
Distance from target shape to brown square at (2, 0): 3
Distance from target shape to yellow right_triangle at (0, 0): 1
Distance from target shape to pink equilateral_triangle at (1, 1): 1
Distance from target shape to orange pentagon at (2, 2): 3
Distance from target shape ... | {
"closest_shape": {
"color": "yellow",
"grid_position": [
0,
0
],
"index": 2,
"shape": "right_triangle"
},
"grid_size": 3,
"shapes": [
{
"color": "brown",
"grid_position": [
2,
0
],
"index": 0,
"shape": "square"
},
{
... | |
There are 4 shapes on a 10x10 grid. Which shape is closest to the pink square? | (5, 2) | Target shape: pink square at (2, 8)
Distance from target shape to gray pentagon at (8, 2): 12
Distance from target shape to blue rectangle at (5, 2): 9
Distance from target shape to yellow square at (4, 1): 9
Closest shape is the blue rectangle at (5, 2) with distance 9 | {
"closest_shape": {
"color": "blue",
"grid_position": [
5,
2
],
"index": 2,
"shape": "rectangle"
},
"grid_size": 10,
"shapes": [
{
"color": "gray",
"grid_position": [
8,
2
],
"index": 0,
"shape": "pentagon"
},
{
"co... | |
There are 7 shapes on a 10x10 grid. Which shape is closest to the cyan pentagon? | (6, 6) | Target shape: cyan pentagon at (7, 1)
Distance from target shape to pink equilateral_triangle at (3, 6): 9
Distance from target shape to orange right_triangle at (6, 6): 6
Distance from target shape to green pentagon at (1, 4): 9
Distance from target shape to gray hexagon at (0, 2): 8
Distance from target shape to yell... | {
"closest_shape": {
"color": "orange",
"grid_position": [
6,
6
],
"index": 1,
"shape": "right_triangle"
},
"grid_size": 10,
"shapes": [
{
"color": "pink",
"grid_position": [
3,
6
],
"index": 0,
"shape": "equilateral_triangle"
... | |
There are 8 shapes on a 4x4 grid. Which shape is closest to the pink circle? | (1, 3) | Target shape: pink circle at (0, 3)
Distance from target shape to purple rectangle at (1, 3): 1
Distance from target shape to green equilateral_triangle at (0, 1): 2
Distance from target shape to cyan hexagon at (3, 2): 4
Distance from target shape to gray square at (3, 0): 6
Distance from target shape to red circle at... | {
"closest_shape": {
"color": "purple",
"grid_position": [
1,
3
],
"index": 0,
"shape": "rectangle"
},
"grid_size": 4,
"shapes": [
{
"color": "purple",
"grid_position": [
1,
3
],
"index": 0,
"shape": "rectangle"
},
{
... | |
There are 7 shapes on a 5x5 grid. Which shape is closest to the orange circle? | (3, 3) | Target shape: orange circle at (3, 4)
Distance from target shape to brown pentagon at (3, 3): 1
Distance from target shape to purple equilateral_triangle at (2, 2): 3
Distance from target shape to cyan equilateral_triangle at (1, 1): 5
Distance from target shape to green equilateral_triangle at (2, 4): 1
Distance from ... | {
"closest_shape": {
"color": "brown",
"grid_position": [
3,
3
],
"index": 0,
"shape": "pentagon"
},
"grid_size": 5,
"shapes": [
{
"color": "brown",
"grid_position": [
3,
3
],
"index": 0,
"shape": "pentagon"
},
{
"co... | |
There are 8 shapes on a 8x8 grid. Which shape is closest to the gray hexagon? | (7, 6) | Target shape: gray hexagon at (6, 5)
Distance from target shape to yellow right_triangle at (0, 5): 6
Distance from target shape to green equilateral_triangle at (4, 1): 6
Distance from target shape to orange equilateral_triangle at (1, 2): 8
Distance from target shape to blue right_triangle at (2, 2): 7
Distance from ... | {
"closest_shape": {
"color": "pink",
"grid_position": [
7,
6
],
"index": 5,
"shape": "right_triangle"
},
"grid_size": 8,
"shapes": [
{
"color": "yellow",
"grid_position": [
0,
5
],
"index": 0,
"shape": "right_triangle"
},
... | |
There are 2 shapes on a 10x10 grid. Which shape is closest to the cyan circle? | (6, 6) | Target shape: cyan circle at (7, 1)
Distance from target shape to blue circle at (6, 6): 6
Closest shape is the blue circle at (6, 6) with distance 6 | {
"closest_shape": {
"color": "blue",
"grid_position": [
6,
6
],
"index": 0,
"shape": "circle"
},
"grid_size": 10,
"shapes": [
{
"color": "blue",
"grid_position": [
6,
6
],
"index": 0,
"shape": "circle"
},
{
"color":... | |
There are 8 shapes on a 9x9 grid. Which shape is closest to the pink rectangle? | (5, 5) | Target shape: pink rectangle at (6, 4)
Distance from target shape to red hexagon at (6, 8): 4
Distance from target shape to purple pentagon at (4, 2): 4
Distance from target shape to gray trapezoid at (5, 5): 2
Distance from target shape to brown right_triangle at (8, 3): 3
Distance from target shape to cyan trapezoid ... | {
"closest_shape": {
"color": "gray",
"grid_position": [
5,
5
],
"index": 3,
"shape": "trapezoid"
},
"grid_size": 9,
"shapes": [
{
"color": "red",
"grid_position": [
6,
8
],
"index": 0,
"shape": "hexagon"
},
{
"color... | |
There are 8 shapes on a 6x6 grid. Which shape is closest to the brown rectangle? | (4, 4) | Target shape: brown rectangle at (3, 4)
Distance from target shape to yellow right_triangle at (2, 2): 3
Distance from target shape to green pentagon at (4, 4): 1
Distance from target shape to purple rectangle at (0, 4): 3
Distance from target shape to cyan pentagon at (0, 0): 7
Distance from target shape to blue equil... | {
"closest_shape": {
"color": "green",
"grid_position": [
4,
4
],
"index": 1,
"shape": "pentagon"
},
"grid_size": 6,
"shapes": [
{
"color": "yellow",
"grid_position": [
2,
2
],
"index": 0,
"shape": "right_triangle"
},
{
... | |
There are 2 shapes on a 8x8 grid. Which shape is closest to the red equilateral_triangle? | (2, 3) | Target shape: red equilateral_triangle at (0, 3)
Distance from target shape to green hexagon at (2, 3): 2
Closest shape is the green hexagon at (2, 3) with distance 2 | {
"closest_shape": {
"color": "green",
"grid_position": [
2,
3
],
"index": 0,
"shape": "hexagon"
},
"grid_size": 8,
"shapes": [
{
"color": "green",
"grid_position": [
2,
3
],
"index": 0,
"shape": "hexagon"
},
{
"colo... | |
There are 8 shapes on a 4x4 grid. Which shape is closest to the green rectangle? | (1, 3) | Target shape: green rectangle at (1, 2)
Distance from target shape to cyan pentagon at (2, 0): 3
Distance from target shape to brown pentagon at (1, 3): 1
Distance from target shape to gray circle at (3, 3): 3
Distance from target shape to purple trapezoid at (1, 1): 1
Distance from target shape to red circle at (3, 2)... | {
"closest_shape": {
"color": "brown",
"grid_position": [
1,
3
],
"index": 1,
"shape": "pentagon"
},
"grid_size": 4,
"shapes": [
{
"color": "cyan",
"grid_position": [
2,
0
],
"index": 0,
"shape": "pentagon"
},
{
"col... | |
There are 7 shapes on a 6x6 grid. Which shape is closest to the cyan rectangle? | (1, 3) | Target shape: cyan rectangle at (0, 3)
Distance from target shape to blue square at (5, 5): 7
Distance from target shape to red rectangle at (1, 0): 4
Distance from target shape to brown pentagon at (4, 3): 4
Distance from target shape to orange circle at (1, 3): 1
Distance from target shape to yellow equilateral_trian... | {
"closest_shape": {
"color": "orange",
"grid_position": [
1,
3
],
"index": 4,
"shape": "circle"
},
"grid_size": 6,
"shapes": [
{
"color": "blue",
"grid_position": [
5,
5
],
"index": 0,
"shape": "square"
},
{
"color"... | |
There are 6 shapes on a 9x9 grid. Which shape is closest to the pink circle? | (3, 5) | Target shape: pink circle at (4, 6)
Distance from target shape to blue hexagon at (6, 2): 6
Distance from target shape to red right_triangle at (3, 5): 2
Distance from target shape to purple square at (2, 1): 7
Distance from target shape to gray pentagon at (0, 0): 10
Distance from target shape to orange square at (7, ... | {
"closest_shape": {
"color": "red",
"grid_position": [
3,
5
],
"index": 1,
"shape": "right_triangle"
},
"grid_size": 9,
"shapes": [
{
"color": "blue",
"grid_position": [
6,
2
],
"index": 0,
"shape": "hexagon"
},
{
"... | |
There are 7 shapes on a 6x6 grid. Which shape is closest to the green right_triangle? | (5, 3) | Target shape: green right_triangle at (5, 4)
Distance from target shape to purple square at (5, 0): 4
Distance from target shape to pink rectangle at (4, 1): 4
Distance from target shape to yellow equilateral_triangle at (4, 3): 2
Distance from target shape to brown right_triangle at (5, 3): 1
Distance from target shap... | {
"closest_shape": {
"color": "brown",
"grid_position": [
5,
3
],
"index": 3,
"shape": "right_triangle"
},
"grid_size": 6,
"shapes": [
{
"color": "purple",
"grid_position": [
5,
0
],
"index": 0,
"shape": "square"
},
{
... | |
There are 3 shapes on a 7x7 grid. Which shape is closest to the cyan trapezoid? | (5, 1) | Target shape: cyan trapezoid at (4, 0)
Distance from target shape to red square at (5, 3): 4
Distance from target shape to gray pentagon at (5, 1): 2
Closest shape is the gray pentagon at (5, 1) with distance 2 | {
"closest_shape": {
"color": "gray",
"grid_position": [
5,
1
],
"index": 1,
"shape": "pentagon"
},
"grid_size": 7,
"shapes": [
{
"color": "red",
"grid_position": [
5,
3
],
"index": 0,
"shape": "square"
},
{
"color":... | |
There are 8 shapes on a 7x7 grid. Which shape is closest to the gray right_triangle? | (6, 5) | Target shape: gray right_triangle at (6, 4)
Distance from target shape to green trapezoid at (1, 0): 9
Distance from target shape to yellow square at (6, 5): 1
Distance from target shape to purple trapezoid at (5, 1): 4
Distance from target shape to orange equilateral_triangle at (3, 3): 4
Distance from target shape to... | {
"closest_shape": {
"color": "yellow",
"grid_position": [
6,
5
],
"index": 1,
"shape": "square"
},
"grid_size": 7,
"shapes": [
{
"color": "green",
"grid_position": [
1,
0
],
"index": 0,
"shape": "trapezoid"
},
{
"co... | |
There are 5 shapes on a 5x5 grid. Which shape is closest to the gray trapezoid? | (0, 3) | Target shape: gray trapezoid at (0, 4)
Distance from target shape to green square at (1, 2): 3
Distance from target shape to yellow right_triangle at (2, 0): 6
Distance from target shape to pink equilateral_triangle at (0, 3): 1
Distance from target shape to purple right_triangle at (4, 3): 5
Closest shape is the pink ... | {
"closest_shape": {
"color": "pink",
"grid_position": [
0,
3
],
"index": 3,
"shape": "equilateral_triangle"
},
"grid_size": 5,
"shapes": [
{
"color": "green",
"grid_position": [
1,
2
],
"index": 0,
"shape": "square"
},
{
... | |
There are 7 shapes on a 9x9 grid. Which shape is closest to the brown circle? | (3, 6) | Target shape: brown circle at (2, 8)
Distance from target shape to gray hexagon at (7, 0): 13
Distance from target shape to purple right_triangle at (6, 8): 4
Distance from target shape to yellow pentagon at (4, 4): 6
Distance from target shape to blue circle at (7, 7): 6
Distance from target shape to cyan pentagon at ... | {
"closest_shape": {
"color": "cyan",
"grid_position": [
3,
6
],
"index": 5,
"shape": "pentagon"
},
"grid_size": 9,
"shapes": [
{
"color": "brown",
"grid_position": [
2,
8
],
"index": 0,
"shape": "circle"
},
{
"color... | |
There are 3 shapes on a 4x4 grid. Which shape is closest to the green trapezoid? | (1, 3) | Target shape: green trapezoid at (3, 3)
Distance from target shape to gray right_triangle at (1, 3): 2
Distance from target shape to orange square at (2, 2): 2
Closest shape is the gray right_triangle at (1, 3) with distance 2 | {
"closest_shape": {
"color": "gray",
"grid_position": [
1,
3
],
"index": 1,
"shape": "right_triangle"
},
"grid_size": 4,
"shapes": [
{
"color": "green",
"grid_position": [
3,
3
],
"index": 0,
"shape": "trapezoid"
},
{
... | |
There are 7 shapes on a 4x4 grid. Which shape is closest to the yellow rectangle? | (3, 1) | Target shape: yellow rectangle at (2, 1)
Distance from target shape to purple square at (1, 0): 2
Distance from target shape to orange hexagon at (0, 3): 4
Distance from target shape to pink equilateral_triangle at (3, 1): 1
Distance from target shape to brown trapezoid at (1, 2): 2
Distance from target shape to blue e... | {
"closest_shape": {
"color": "pink",
"grid_position": [
3,
1
],
"index": 3,
"shape": "equilateral_triangle"
},
"grid_size": 4,
"shapes": [
{
"color": "purple",
"grid_position": [
1,
0
],
"index": 0,
"shape": "square"
},
{... | |
There are 3 shapes on a 5x5 grid. Which shape is closest to the cyan square? | (4, 4) | Target shape: cyan square at (2, 4)
Distance from target shape to red trapezoid at (4, 4): 2
Distance from target shape to orange square at (3, 3): 2
Closest shape is the red trapezoid at (4, 4) with distance 2 | {
"closest_shape": {
"color": "red",
"grid_position": [
4,
4
],
"index": 1,
"shape": "trapezoid"
},
"grid_size": 5,
"shapes": [
{
"color": "cyan",
"grid_position": [
2,
4
],
"index": 0,
"shape": "square"
},
{
"color"... | |
There are 2 shapes on a 8x8 grid. Which shape is closest to the orange circle? | (2, 7) | Target shape: orange circle at (0, 3)
Distance from target shape to blue pentagon at (2, 7): 6
Closest shape is the blue pentagon at (2, 7) with distance 6 | {
"closest_shape": {
"color": "blue",
"grid_position": [
2,
7
],
"index": 1,
"shape": "pentagon"
},
"grid_size": 8,
"shapes": [
{
"color": "orange",
"grid_position": [
0,
3
],
"index": 0,
"shape": "circle"
},
{
"colo... | |
There are 3 shapes on a 3x3 grid. Which shape is closest to the gray hexagon? | (1, 0) | Target shape: gray hexagon at (0, 2)
Distance from target shape to pink hexagon at (2, 0): 4
Distance from target shape to blue right_triangle at (1, 0): 3
Closest shape is the blue right_triangle at (1, 0) with distance 3 | {
"closest_shape": {
"color": "blue",
"grid_position": [
1,
0
],
"index": 1,
"shape": "right_triangle"
},
"grid_size": 3,
"shapes": [
{
"color": "pink",
"grid_position": [
2,
0
],
"index": 0,
"shape": "hexagon"
},
{
... | |
There are 6 shapes on a 5x5 grid. Which shape is closest to the pink hexagon? | (1, 0) | Target shape: pink hexagon at (0, 0)
Distance from target shape to blue trapezoid at (3, 1): 4
Distance from target shape to orange circle at (3, 3): 6
Distance from target shape to cyan hexagon at (3, 2): 5
Distance from target shape to red circle at (1, 0): 1
Distance from target shape to green circle at (2, 0): 2
Cl... | {
"closest_shape": {
"color": "red",
"grid_position": [
1,
0
],
"index": 4,
"shape": "circle"
},
"grid_size": 5,
"shapes": [
{
"color": "blue",
"grid_position": [
3,
1
],
"index": 0,
"shape": "trapezoid"
},
{
"color"... | |
There are 2 shapes on a 4x4 grid. Which shape is closest to the gray circle? | (3, 1) | Target shape: gray circle at (0, 2)
Distance from target shape to green hexagon at (3, 1): 4
Closest shape is the green hexagon at (3, 1) with distance 4 | {
"closest_shape": {
"color": "green",
"grid_position": [
3,
1
],
"index": 1,
"shape": "hexagon"
},
"grid_size": 4,
"shapes": [
{
"color": "gray",
"grid_position": [
0,
2
],
"index": 0,
"shape": "circle"
},
{
"color"... | |
There are 4 shapes on a 5x5 grid. Which shape is closest to the purple circle? | (2, 2) | Target shape: purple circle at (3, 1)
Distance from target shape to blue rectangle at (2, 3): 3
Distance from target shape to brown hexagon at (2, 2): 2
Distance from target shape to cyan right_triangle at (0, 3): 5
Closest shape is the brown hexagon at (2, 2) with distance 2 | {
"closest_shape": {
"color": "brown",
"grid_position": [
2,
2
],
"index": 2,
"shape": "hexagon"
},
"grid_size": 5,
"shapes": [
{
"color": "purple",
"grid_position": [
3,
1
],
"index": 0,
"shape": "circle"
},
{
"colo... | |
There are 5 shapes on a 10x10 grid. Which shape is closest to the blue right_triangle? | (0, 3) | Target shape: blue right_triangle at (0, 1)
Distance from target shape to red rectangle at (0, 5): 4
Distance from target shape to orange pentagon at (4, 6): 9
Distance from target shape to pink rectangle at (2, 2): 3
Distance from target shape to cyan right_triangle at (0, 3): 2
Closest shape is the cyan right_triangl... | {
"closest_shape": {
"color": "cyan",
"grid_position": [
0,
3
],
"index": 4,
"shape": "right_triangle"
},
"grid_size": 10,
"shapes": [
{
"color": "red",
"grid_position": [
0,
5
],
"index": 0,
"shape": "rectangle"
},
{
... | |
There are 6 shapes on a 10x10 grid. Which shape is closest to the gray pentagon? | (8, 2) | Target shape: gray pentagon at (8, 6)
Distance from target shape to red pentagon at (3, 5): 6
Distance from target shape to purple right_triangle at (6, 1): 7
Distance from target shape to blue equilateral_triangle at (8, 2): 4
Distance from target shape to pink hexagon at (4, 8): 6
Distance from target shape to cyan r... | {
"closest_shape": {
"color": "blue",
"grid_position": [
8,
2
],
"index": 2,
"shape": "equilateral_triangle"
},
"grid_size": 10,
"shapes": [
{
"color": "red",
"grid_position": [
3,
5
],
"index": 0,
"shape": "pentagon"
},
{... | |
There are 6 shapes on a 10x10 grid. Which shape is closest to the orange equilateral_triangle? | (6, 0) | Target shape: orange equilateral_triangle at (8, 1)
Distance from target shape to red rectangle at (5, 0): 4
Distance from target shape to green pentagon at (6, 0): 3
Distance from target shape to cyan equilateral_triangle at (5, 9): 11
Distance from target shape to brown equilateral_triangle at (3, 9): 13
Distance fro... | {
"closest_shape": {
"color": "green",
"grid_position": [
6,
0
],
"index": 1,
"shape": "pentagon"
},
"grid_size": 10,
"shapes": [
{
"color": "red",
"grid_position": [
5,
0
],
"index": 0,
"shape": "rectangle"
},
{
"co... | |
There are 3 shapes on a 4x4 grid. Which shape is closest to the green trapezoid? | (2, 3) | Target shape: green trapezoid at (1, 3)
Distance from target shape to purple right_triangle at (3, 0): 5
Distance from target shape to brown trapezoid at (2, 3): 1
Closest shape is the brown trapezoid at (2, 3) with distance 1 | {
"closest_shape": {
"color": "brown",
"grid_position": [
2,
3
],
"index": 2,
"shape": "trapezoid"
},
"grid_size": 4,
"shapes": [
{
"color": "green",
"grid_position": [
1,
3
],
"index": 0,
"shape": "trapezoid"
},
{
"... | |
There are 8 shapes on a 4x4 grid. Which shape is closest to the brown trapezoid? | (0, 1) | Target shape: brown trapezoid at (0, 0)
Distance from target shape to pink trapezoid at (2, 1): 3
Distance from target shape to gray square at (3, 2): 5
Distance from target shape to blue square at (0, 1): 1
Distance from target shape to orange equilateral_triangle at (2, 2): 4
Distance from target shape to purple rect... | {
"closest_shape": {
"color": "blue",
"grid_position": [
0,
1
],
"index": 3,
"shape": "square"
},
"grid_size": 4,
"shapes": [
{
"color": "brown",
"grid_position": [
0,
0
],
"index": 0,
"shape": "trapezoid"
},
{
"colo... | |
There are 4 shapes on a 9x9 grid. Which shape is closest to the pink equilateral_triangle? | (5, 7) | Target shape: pink equilateral_triangle at (7, 6)
Distance from target shape to blue right_triangle at (4, 7): 4
Distance from target shape to yellow rectangle at (5, 7): 3
Distance from target shape to red right_triangle at (1, 5): 7
Closest shape is the yellow rectangle at (5, 7) with distance 3 | {
"closest_shape": {
"color": "yellow",
"grid_position": [
5,
7
],
"index": 1,
"shape": "rectangle"
},
"grid_size": 9,
"shapes": [
{
"color": "blue",
"grid_position": [
4,
7
],
"index": 0,
"shape": "right_triangle"
},
{
... | |
There are 6 shapes on a 10x10 grid. Which shape is closest to the gray rectangle? | (7, 0) | Target shape: gray rectangle at (7, 2)
Distance from target shape to yellow rectangle at (1, 8): 12
Distance from target shape to red hexagon at (7, 0): 2
Distance from target shape to orange equilateral_triangle at (9, 9): 9
Distance from target shape to brown pentagon at (1, 2): 6
Distance from target shape to green ... | {
"closest_shape": {
"color": "red",
"grid_position": [
7,
0
],
"index": 1,
"shape": "hexagon"
},
"grid_size": 10,
"shapes": [
{
"color": "yellow",
"grid_position": [
1,
8
],
"index": 0,
"shape": "rectangle"
},
{
"co... | |
There are 3 shapes on a 8x8 grid. Which shape is closest to the gray trapezoid? | (1, 7) | Target shape: gray trapezoid at (1, 4)
Distance from target shape to green circle at (7, 7): 9
Distance from target shape to pink pentagon at (1, 7): 3
Closest shape is the pink pentagon at (1, 7) with distance 3 | {
"closest_shape": {
"color": "pink",
"grid_position": [
1,
7
],
"index": 2,
"shape": "pentagon"
},
"grid_size": 8,
"shapes": [
{
"color": "green",
"grid_position": [
7,
7
],
"index": 0,
"shape": "circle"
},
{
"color... | |
There are 6 shapes on a 8x8 grid. Which shape is closest to the gray square? | (1, 3) | Target shape: gray square at (1, 4)
Distance from target shape to brown pentagon at (3, 2): 4
Distance from target shape to orange pentagon at (6, 2): 7
Distance from target shape to blue hexagon at (0, 6): 3
Distance from target shape to cyan hexagon at (1, 3): 1
Distance from target shape to yellow equilateral_triang... | {
"closest_shape": {
"color": "cyan",
"grid_position": [
1,
3
],
"index": 4,
"shape": "hexagon"
},
"grid_size": 8,
"shapes": [
{
"color": "brown",
"grid_position": [
3,
2
],
"index": 0,
"shape": "pentagon"
},
{
"colo... | |
There are 6 shapes on a 7x7 grid. Which shape is closest to the green equilateral_triangle? | (0, 1) | Target shape: green equilateral_triangle at (3, 1)
Distance from target shape to red equilateral_triangle at (5, 3): 4
Distance from target shape to gray equilateral_triangle at (0, 1): 3
Distance from target shape to yellow rectangle at (5, 2): 3
Distance from target shape to pink right_triangle at (0, 4): 6
Distance ... | {
"closest_shape": {
"color": "gray",
"grid_position": [
0,
1
],
"index": 1,
"shape": "equilateral_triangle"
},
"grid_size": 7,
"shapes": [
{
"color": "red",
"grid_position": [
5,
3
],
"index": 0,
"shape": "equilateral_triangle"
... | |
There are 4 shapes on a 5x5 grid. Which shape is closest to the orange equilateral_triangle? | (0, 4) | Target shape: orange equilateral_triangle at (0, 1)
Distance from target shape to gray circle at (0, 4): 3
Distance from target shape to cyan square at (1, 3): 3
Distance from target shape to blue hexagon at (4, 3): 6
Closest shape is the gray circle at (0, 4) with distance 3 | {
"closest_shape": {
"color": "gray",
"grid_position": [
0,
4
],
"index": 1,
"shape": "circle"
},
"grid_size": 5,
"shapes": [
{
"color": "orange",
"grid_position": [
0,
1
],
"index": 0,
"shape": "equilateral_triangle"
},
{... | |
There are 5 shapes on a 4x4 grid. Which shape is closest to the blue rectangle? | (2, 0) | Target shape: blue rectangle at (0, 0)
Distance from target shape to purple rectangle at (3, 2): 5
Distance from target shape to yellow square at (2, 0): 2
Distance from target shape to cyan pentagon at (2, 3): 5
Distance from target shape to brown right_triangle at (3, 1): 4
Closest shape is the yellow square at (2, 0... | {
"closest_shape": {
"color": "yellow",
"grid_position": [
2,
0
],
"index": 2,
"shape": "square"
},
"grid_size": 4,
"shapes": [
{
"color": "blue",
"grid_position": [
0,
0
],
"index": 0,
"shape": "rectangle"
},
{
"col... | |
There are 4 shapes on a 6x6 grid. Which shape is closest to the blue trapezoid? | (2, 4) | Target shape: blue trapezoid at (5, 3)
Distance from target shape to cyan equilateral_triangle at (2, 4): 4
Distance from target shape to pink right_triangle at (2, 1): 5
Distance from target shape to gray square at (3, 5): 4
Closest shape is the cyan equilateral_triangle at (2, 4) with distance 4 | {
"closest_shape": {
"color": "cyan",
"grid_position": [
2,
4
],
"index": 1,
"shape": "equilateral_triangle"
},
"grid_size": 6,
"shapes": [
{
"color": "blue",
"grid_position": [
5,
3
],
"index": 0,
"shape": "trapezoid"
},
... | |
There are 8 shapes on a 8x8 grid. Which shape is closest to the purple equilateral_triangle? | (1, 6) | Target shape: purple equilateral_triangle at (2, 6)
Distance from target shape to yellow hexagon at (1, 6): 1
Distance from target shape to orange circle at (0, 4): 4
Distance from target shape to gray square at (2, 4): 2
Distance from target shape to pink pentagon at (3, 3): 4
Distance from target shape to brown right... | {
"closest_shape": {
"color": "yellow",
"grid_position": [
1,
6
],
"index": 0,
"shape": "hexagon"
},
"grid_size": 8,
"shapes": [
{
"color": "yellow",
"grid_position": [
1,
6
],
"index": 0,
"shape": "hexagon"
},
{
"co... | |
There are 3 shapes on a 5x5 grid. Which shape is closest to the orange rectangle? | (3, 4) | Target shape: orange rectangle at (4, 4)
Distance from target shape to purple square at (1, 0): 7
Distance from target shape to red right_triangle at (3, 4): 1
Closest shape is the red right_triangle at (3, 4) with distance 1 | {
"closest_shape": {
"color": "red",
"grid_position": [
3,
4
],
"index": 1,
"shape": "right_triangle"
},
"grid_size": 5,
"shapes": [
{
"color": "purple",
"grid_position": [
1,
0
],
"index": 0,
"shape": "square"
},
{
... | |
There are 5 shapes on a 8x8 grid. Which shape is closest to the purple equilateral_triangle? | (4, 5) | Target shape: purple equilateral_triangle at (5, 1)
Distance from target shape to pink pentagon at (6, 6): 6
Distance from target shape to gray circle at (3, 7): 8
Distance from target shape to cyan circle at (6, 7): 7
Distance from target shape to red square at (4, 5): 5
Closest shape is the red square at (4, 5) with ... | {
"closest_shape": {
"color": "red",
"grid_position": [
4,
5
],
"index": 4,
"shape": "square"
},
"grid_size": 8,
"shapes": [
{
"color": "purple",
"grid_position": [
5,
1
],
"index": 0,
"shape": "equilateral_triangle"
},
{
... | |
There are 7 shapes on a 7x7 grid. Which shape is closest to the orange rectangle? | (3, 4) | Target shape: orange rectangle at (3, 1)
Distance from target shape to pink right_triangle at (3, 4): 3
Distance from target shape to red right_triangle at (2, 4): 4
Distance from target shape to brown rectangle at (0, 3): 5
Distance from target shape to purple pentagon at (6, 2): 4
Distance from target shape to gray c... | {
"closest_shape": {
"color": "pink",
"grid_position": [
3,
4
],
"index": 0,
"shape": "right_triangle"
},
"grid_size": 7,
"shapes": [
{
"color": "pink",
"grid_position": [
3,
4
],
"index": 0,
"shape": "right_triangle"
},
{... | |
There are 8 shapes on a 3x3 grid. Which shape is closest to the yellow equilateral_triangle? | (1, 0) | Target shape: yellow equilateral_triangle at (2, 0)
Distance from target shape to green rectangle at (1, 0): 1
Distance from target shape to red circle at (0, 2): 4
Distance from target shape to cyan hexagon at (1, 1): 2
Distance from target shape to pink equilateral_triangle at (1, 2): 3
Distance from target shape to ... | {
"closest_shape": {
"color": "green",
"grid_position": [
1,
0
],
"index": 0,
"shape": "rectangle"
},
"grid_size": 3,
"shapes": [
{
"color": "green",
"grid_position": [
1,
0
],
"index": 0,
"shape": "rectangle"
},
{
"... | |
There are 8 shapes on a 10x10 grid. Which shape is closest to the purple trapezoid? | (0, 6) | Target shape: purple trapezoid at (2, 8)
Distance from target shape to brown equilateral_triangle at (9, 8): 7
Distance from target shape to green equilateral_triangle at (6, 7): 5
Distance from target shape to gray right_triangle at (0, 6): 4
Distance from target shape to red hexagon at (5, 7): 4
Distance from target ... | {
"closest_shape": {
"color": "gray",
"grid_position": [
0,
6
],
"index": 2,
"shape": "right_triangle"
},
"grid_size": 10,
"shapes": [
{
"color": "brown",
"grid_position": [
9,
8
],
"index": 0,
"shape": "equilateral_triangle"
... | |
There are 7 shapes on a 7x7 grid. Which shape is closest to the yellow pentagon? | (2, 3) | Target shape: yellow pentagon at (0, 4)
Distance from target shape to pink rectangle at (4, 1): 7
Distance from target shape to orange circle at (0, 0): 4
Distance from target shape to gray square at (2, 3): 3
Distance from target shape to purple circle at (6, 5): 7
Distance from target shape to cyan trapezoid at (4, 4... | {
"closest_shape": {
"color": "gray",
"grid_position": [
2,
3
],
"index": 2,
"shape": "square"
},
"grid_size": 7,
"shapes": [
{
"color": "pink",
"grid_position": [
4,
1
],
"index": 0,
"shape": "rectangle"
},
{
"color... | |
There are 8 shapes on a 4x4 grid. Which shape is closest to the cyan hexagon? | (2, 2) | Target shape: cyan hexagon at (1, 2)
Distance from target shape to pink right_triangle at (1, 0): 2
Distance from target shape to brown hexagon at (2, 2): 1
Distance from target shape to blue rectangle at (0, 1): 2
Distance from target shape to purple pentagon at (3, 0): 4
Distance from target shape to red rectangle at... | {
"closest_shape": {
"color": "brown",
"grid_position": [
2,
2
],
"index": 1,
"shape": "hexagon"
},
"grid_size": 4,
"shapes": [
{
"color": "pink",
"grid_position": [
1,
0
],
"index": 0,
"shape": "right_triangle"
},
{
... | |
There are 3 shapes on a 6x6 grid. Which shape is closest to the purple circle? | (1, 0) | Target shape: purple circle at (4, 0)
Distance from target shape to yellow circle at (3, 5): 6
Distance from target shape to pink pentagon at (1, 0): 3
Closest shape is the pink pentagon at (1, 0) with distance 3 | {
"closest_shape": {
"color": "pink",
"grid_position": [
1,
0
],
"index": 2,
"shape": "pentagon"
},
"grid_size": 6,
"shapes": [
{
"color": "yellow",
"grid_position": [
3,
5
],
"index": 0,
"shape": "circle"
},
{
"colo... | |
There are 3 shapes on a 10x10 grid. Which shape is closest to the orange hexagon? | (9, 9) | Target shape: orange hexagon at (7, 7)
Distance from target shape to green hexagon at (5, 2): 7
Distance from target shape to red circle at (9, 9): 4
Closest shape is the red circle at (9, 9) with distance 4 | {
"closest_shape": {
"color": "red",
"grid_position": [
9,
9
],
"index": 2,
"shape": "circle"
},
"grid_size": 10,
"shapes": [
{
"color": "green",
"grid_position": [
5,
2
],
"index": 0,
"shape": "hexagon"
},
{
"color"... | |
There are 7 shapes on a 6x6 grid. Which shape is closest to the red pentagon? | (2, 0) | Target shape: red pentagon at (2, 1)
Distance from target shape to pink trapezoid at (2, 0): 1
Distance from target shape to cyan trapezoid at (5, 2): 4
Distance from target shape to green equilateral_triangle at (5, 4): 6
Distance from target shape to blue hexagon at (4, 0): 3
Distance from target shape to brown penta... | {
"closest_shape": {
"color": "pink",
"grid_position": [
2,
0
],
"index": 0,
"shape": "trapezoid"
},
"grid_size": 6,
"shapes": [
{
"color": "pink",
"grid_position": [
2,
0
],
"index": 0,
"shape": "trapezoid"
},
{
"co... | |
There are 3 shapes on a 7x7 grid. Which shape is closest to the gray hexagon? | (2, 6) | Target shape: gray hexagon at (5, 5)
Distance from target shape to green equilateral_triangle at (4, 1): 5
Distance from target shape to pink pentagon at (2, 6): 4
Closest shape is the pink pentagon at (2, 6) with distance 4 | {
"closest_shape": {
"color": "pink",
"grid_position": [
2,
6
],
"index": 1,
"shape": "pentagon"
},
"grid_size": 7,
"shapes": [
{
"color": "green",
"grid_position": [
4,
1
],
"index": 0,
"shape": "equilateral_triangle"
},
... | |
There are 3 shapes on a 3x3 grid. Which shape is closest to the blue pentagon? | (0, 1) | Target shape: blue pentagon at (1, 2)
Distance from target shape to brown trapezoid at (0, 1): 2
Distance from target shape to cyan circle at (2, 1): 2
Closest shape is the brown trapezoid at (0, 1) with distance 2 | {
"closest_shape": {
"color": "brown",
"grid_position": [
0,
1
],
"index": 1,
"shape": "trapezoid"
},
"grid_size": 3,
"shapes": [
{
"color": "blue",
"grid_position": [
1,
2
],
"index": 0,
"shape": "pentagon"
},
{
"co... | |
There are 3 shapes on a 7x7 grid. Which shape is closest to the blue rectangle? | (5, 4) | Target shape: blue rectangle at (4, 6)
Distance from target shape to brown rectangle at (5, 4): 3
Distance from target shape to green circle at (5, 3): 4
Closest shape is the brown rectangle at (5, 4) with distance 3 | {
"closest_shape": {
"color": "brown",
"grid_position": [
5,
4
],
"index": 1,
"shape": "rectangle"
},
"grid_size": 7,
"shapes": [
{
"color": "blue",
"grid_position": [
4,
6
],
"index": 0,
"shape": "rectangle"
},
{
"c... | |
There are 3 shapes on a 10x10 grid. Which shape is closest to the pink equilateral_triangle? | (3, 7) | Target shape: pink equilateral_triangle at (1, 3)
Distance from target shape to blue circle at (6, 0): 8
Distance from target shape to red equilateral_triangle at (3, 7): 6
Closest shape is the red equilateral_triangle at (3, 7) with distance 6 | {
"closest_shape": {
"color": "red",
"grid_position": [
3,
7
],
"index": 1,
"shape": "equilateral_triangle"
},
"grid_size": 10,
"shapes": [
{
"color": "blue",
"grid_position": [
6,
0
],
"index": 0,
"shape": "circle"
},
{
... | |
There are 7 shapes on a 3x3 grid. Which shape is closest to the orange pentagon? | (1, 1) | Target shape: orange pentagon at (1, 2)
Distance from target shape to cyan square at (0, 1): 2
Distance from target shape to red equilateral_triangle at (2, 0): 3
Distance from target shape to green hexagon at (1, 0): 2
Distance from target shape to purple rectangle at (1, 1): 1
Distance from target shape to pink equil... | {
"closest_shape": {
"color": "purple",
"grid_position": [
1,
1
],
"index": 3,
"shape": "rectangle"
},
"grid_size": 3,
"shapes": [
{
"color": "cyan",
"grid_position": [
0,
1
],
"index": 0,
"shape": "square"
},
{
"col... | |
There are 6 shapes on a 5x5 grid. Which shape is closest to the gray right_triangle? | (3, 1) | Target shape: gray right_triangle at (3, 2)
Distance from target shape to red equilateral_triangle at (3, 1): 1
Distance from target shape to brown hexagon at (1, 4): 4
Distance from target shape to orange circle at (0, 1): 4
Distance from target shape to green equilateral_triangle at (0, 0): 5
Distance from target sha... | {
"closest_shape": {
"color": "red",
"grid_position": [
3,
1
],
"index": 0,
"shape": "equilateral_triangle"
},
"grid_size": 5,
"shapes": [
{
"color": "red",
"grid_position": [
3,
1
],
"index": 0,
"shape": "equilateral_triangle"
... | |
There are 7 shapes on a 4x4 grid. Which shape is closest to the blue pentagon? | (3, 2) | Target shape: blue pentagon at (2, 2)
Distance from target shape to cyan right_triangle at (0, 2): 2
Distance from target shape to orange hexagon at (3, 2): 1
Distance from target shape to brown equilateral_triangle at (0, 1): 3
Distance from target shape to yellow right_triangle at (1, 2): 1
Distance from target shape... | {
"closest_shape": {
"color": "orange",
"grid_position": [
3,
2
],
"index": 2,
"shape": "hexagon"
},
"grid_size": 4,
"shapes": [
{
"color": "blue",
"grid_position": [
2,
2
],
"index": 0,
"shape": "pentagon"
},
{
"col... | |
There are 6 shapes on a 4x4 grid. Which shape is closest to the gray square? | (3, 2) | Target shape: gray square at (3, 0)
Distance from target shape to red trapezoid at (1, 3): 5
Distance from target shape to purple square at (0, 1): 4
Distance from target shape to pink trapezoid at (2, 2): 3
Distance from target shape to orange pentagon at (3, 3): 3
Distance from target shape to green hexagon at (3, 2)... | {
"closest_shape": {
"color": "green",
"grid_position": [
3,
2
],
"index": 5,
"shape": "hexagon"
},
"grid_size": 4,
"shapes": [
{
"color": "red",
"grid_position": [
1,
3
],
"index": 0,
"shape": "trapezoid"
},
{
"colo... | |
There are 8 shapes on a 5x5 grid. Which shape is closest to the purple trapezoid? | (2, 0) | Target shape: purple trapezoid at (3, 0)
Distance from target shape to brown rectangle at (4, 2): 3
Distance from target shape to cyan trapezoid at (0, 1): 4
Distance from target shape to pink hexagon at (2, 0): 1
Distance from target shape to gray right_triangle at (3, 2): 2
Distance from target shape to orange right_... | {
"closest_shape": {
"color": "pink",
"grid_position": [
2,
0
],
"index": 2,
"shape": "hexagon"
},
"grid_size": 5,
"shapes": [
{
"color": "brown",
"grid_position": [
4,
2
],
"index": 0,
"shape": "rectangle"
},
{
"col... | |
There are 5 shapes on a 6x6 grid. Which shape is closest to the brown trapezoid? | (4, 2) | Target shape: brown trapezoid at (5, 5)
Distance from target shape to cyan square at (4, 1): 5
Distance from target shape to purple pentagon at (4, 2): 4
Distance from target shape to yellow square at (1, 3): 6
Distance from target shape to pink equilateral_triangle at (0, 0): 10
Closest shape is the purple pentagon at... | {
"closest_shape": {
"color": "purple",
"grid_position": [
4,
2
],
"index": 1,
"shape": "pentagon"
},
"grid_size": 6,
"shapes": [
{
"color": "cyan",
"grid_position": [
4,
1
],
"index": 0,
"shape": "square"
},
{
"colo... | |
There are 7 shapes on a 4x4 grid. Which shape is closest to the yellow right_triangle? | (2, 3) | Target shape: yellow right_triangle at (0, 3)
Distance from target shape to orange circle at (2, 1): 4
Distance from target shape to red pentagon at (3, 1): 5
Distance from target shape to purple pentagon at (2, 3): 2
Distance from target shape to green pentagon at (1, 0): 4
Distance from target shape to gray trapezoid... | {
"closest_shape": {
"color": "purple",
"grid_position": [
2,
3
],
"index": 3,
"shape": "pentagon"
},
"grid_size": 4,
"shapes": [
{
"color": "orange",
"grid_position": [
2,
1
],
"index": 0,
"shape": "circle"
},
{
"co... | |
There are 2 shapes on a 7x7 grid. Which shape is closest to the orange circle? | (1, 1) | Target shape: orange circle at (0, 2)
Distance from target shape to brown equilateral_triangle at (1, 1): 2
Closest shape is the brown equilateral_triangle at (1, 1) with distance 2 | {
"closest_shape": {
"color": "brown",
"grid_position": [
1,
1
],
"index": 1,
"shape": "equilateral_triangle"
},
"grid_size": 7,
"shapes": [
{
"color": "orange",
"grid_position": [
0,
2
],
"index": 0,
"shape": "circle"
},
... | |
There are 6 shapes on a 5x5 grid. Which shape is closest to the blue right_triangle? | (4, 2) | Target shape: blue right_triangle at (3, 2)
Distance from target shape to brown square at (4, 2): 1
Distance from target shape to green hexagon at (4, 3): 2
Distance from target shape to yellow square at (0, 3): 4
Distance from target shape to purple pentagon at (0, 1): 4
Distance from target shape to pink hexagon at (... | {
"closest_shape": {
"color": "brown",
"grid_position": [
4,
2
],
"index": 0,
"shape": "square"
},
"grid_size": 5,
"shapes": [
{
"color": "brown",
"grid_position": [
4,
2
],
"index": 0,
"shape": "square"
},
{
"color"... | |
There are 7 shapes on a 5x5 grid. Which shape is closest to the cyan circle? | (4, 3) | Target shape: cyan circle at (4, 2)
Distance from target shape to brown right_triangle at (4, 3): 1
Distance from target shape to green square at (0, 1): 5
Distance from target shape to gray pentagon at (0, 0): 6
Distance from target shape to purple trapezoid at (3, 1): 2
Distance from target shape to blue equilateral_... | {
"closest_shape": {
"color": "brown",
"grid_position": [
4,
3
],
"index": 0,
"shape": "right_triangle"
},
"grid_size": 5,
"shapes": [
{
"color": "brown",
"grid_position": [
4,
3
],
"index": 0,
"shape": "right_triangle"
},
... | |
There are 3 shapes on a 8x8 grid. Which shape is closest to the cyan rectangle? | (4, 5) | Target shape: cyan rectangle at (3, 5)
Distance from target shape to red circle at (4, 5): 1
Distance from target shape to green rectangle at (2, 7): 3
Closest shape is the red circle at (4, 5) with distance 1 | {
"closest_shape": {
"color": "red",
"grid_position": [
4,
5
],
"index": 0,
"shape": "circle"
},
"grid_size": 8,
"shapes": [
{
"color": "red",
"grid_position": [
4,
5
],
"index": 0,
"shape": "circle"
},
{
"color": "g... | |
There are 7 shapes on a 4x4 grid. Which shape is closest to the yellow rectangle? | (2, 1) | Target shape: yellow rectangle at (3, 1)
Distance from target shape to blue circle at (1, 2): 3
Distance from target shape to gray right_triangle at (2, 2): 2
Distance from target shape to purple square at (0, 0): 4
Distance from target shape to red equilateral_triangle at (0, 3): 5
Distance from target shape to brown ... | {
"closest_shape": {
"color": "brown",
"grid_position": [
2,
1
],
"index": 5,
"shape": "hexagon"
},
"grid_size": 4,
"shapes": [
{
"color": "blue",
"grid_position": [
1,
2
],
"index": 0,
"shape": "circle"
},
{
"color"... | |
There are 5 shapes on a 6x6 grid. Which shape is closest to the yellow rectangle? | (1, 5) | Target shape: yellow rectangle at (1, 1)
Distance from target shape to gray rectangle at (1, 5): 4
Distance from target shape to pink circle at (2, 5): 5
Distance from target shape to brown pentagon at (4, 3): 5
Distance from target shape to cyan square at (4, 5): 7
Closest shape is the gray rectangle at (1, 5) with di... | {
"closest_shape": {
"color": "gray",
"grid_position": [
1,
5
],
"index": 1,
"shape": "rectangle"
},
"grid_size": 6,
"shapes": [
{
"color": "yellow",
"grid_position": [
1,
1
],
"index": 0,
"shape": "rectangle"
},
{
"... | |
There are 8 shapes on a 7x7 grid. Which shape is closest to the yellow pentagon? | (1, 1) | Target shape: yellow pentagon at (5, 1)
Distance from target shape to blue pentagon at (2, 5): 7
Distance from target shape to green right_triangle at (0, 1): 5
Distance from target shape to orange trapezoid at (1, 1): 4
Distance from target shape to purple circle at (2, 2): 4
Distance from target shape to brown trapez... | {
"closest_shape": {
"color": "orange",
"grid_position": [
1,
1
],
"index": 2,
"shape": "trapezoid"
},
"grid_size": 7,
"shapes": [
{
"color": "blue",
"grid_position": [
2,
5
],
"index": 0,
"shape": "pentagon"
},
{
"c... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.