id
stringlengths
36
36
task_type
stringclasses
1 value
prompt
stringlengths
378
560
verification_info
stringlengths
699
1.84k
metadata
dict
reasoning_gym_binary_matrix_bBNxiQXm
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 1 1 2\n2 1 0 1 0 1\n2 2 1 0 1 2\n1 2 2 1 1 2\n0 1 2 1 0 1\n1 2 2 1 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of ...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 1, 1 ], [ 1, 1, 0, 1, 0, 1 ], [ 1, 1, 1, 0, 1, 1 ], [ 1, 1, ...
reasoning_gym_binary_matrix_3q6rBT7t
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 1 1 2 3 3 2 1 0 0\n0 0 0 1 2 2 1 1 0 1\n1 1 1 2 2 1 0 0 1 2\n2 2 2 2 1 0 1 1 2 3\n1 2 3 3 2 1 2 2 2 3\n0 1 2 3 3 2 1 2 1 2\n1 2 1 2 2 1 0 1 0 1\n2 1 0 1 2 1 1 2 1 0\n1 0 0 0 1 0 1 2 2 1\n0 1 1 1 2 1 2 2 1 0", "reasoning_gym_entry": {"question": "Given a squa...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 1, 1, 1, 1, 0, 0 ], [ 0, 0, 0, 1, 1, 1, 1, 1, 0, 1 ], [ 1, 1...
reasoning_gym_binary_matrix_PvVd7eZF
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 2 2 1 0 1 0 1 2\n1 0 1 1 0 1 2 1 2 2\n0 0 1 0 0 0 1 2 1 1\n0 1 0 1 1 0 1 1 0 0\n1 2 1 0 1 1 2 1 0 1\n2 1 0 1 1 0 1 2 1 0\n1 0 1 2 1 0 0 1 2 1\n1 0 1 2 1 1 1 2 3 2\n2 1 2 1 0 0 1 2 3 3\n3 2 3 2 1 1 2 3 4 4", "reasoning_gym_entry": {"question": "Given a squa...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 1, 0, 1, 0, 1, 1 ], [ 1, 0, 1, 1, 0, 1, 1, 1, 1, 1 ], [ 0, 0...
reasoning_gym_binary_matrix_deoSdFyD
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "3 2 1 0\n2 1 1 0\n1 0 1 1\n2 1 2 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where e...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 0 ], [ 1, 1, 1, 0 ], [ 1, 0, 1, 1 ], [ 1, 1, 1, 1 ] ], "n": 4, "solution": [ ...
reasoning_gym_binary_matrix_Hgbq0ok8
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 2 3 2 1 1\n0 1 2 2 1 0 0\n1 2 3 2 2 1 1\n2 1 2 1 2 1 2\n1 0 1 0 1 0 1\n2 1 0 1 1 0 1\n1 0 0 1 1 0 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1, 1, 1, 1, 1 ], [ 0, 1, 1, 1, 1, 0, 0 ], [ 1, 1, 1, 1, 1, 1, 1 ], ...
reasoning_gym_binary_matrix_aZ07sNZb
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 0 0 1 0 0 0\n0 1 1 2 1 1 1\n1 0 0 1 0 1 1\n0 0 1 1 0 1 0\n0 1 0 0 1 2 1\n0 1 1 1 0 1 1\n1 1 0 1 0 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 0, 0, 1, 0, 0, 0 ], [ 0, 1, 1, 1, 1, 1, 1 ], [ 1, 0, 0, 1, 0, 1, 1 ], ...
reasoning_gym_binary_matrix_eM03HQeR
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 0 1 2 2 1 0 1\n0 1 2 2 1 2 1 0\n1 0 1 1 0 1 2 1\n2 1 2 1 1 2 3 2\n1 1 1 0 1 2 3 3\n0 0 1 1 1 2 3 4\n1 1 0 1 0 1 2 3\n2 2 1 0 1 2 3 4", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 0, 1, 1, 1, 1, 0, 1 ], [ 0, 1, 1, 1, 1, 1, 1, 0 ], [ 1, 0, 1, 1, 0, 1...
reasoning_gym_binary_matrix_5Ntx3hex
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 2 1 1 0\n0 1 0 1 0\n1 1 1 1 0\n1 0 1 0 1\n0 1 0 0 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 0 ], [ 0, 1, 0, 1, 0 ], [ 1, 1, 1, 1, 0 ], [ 1, 0, 1, 0, 1 ]...
reasoning_gym_binary_matrix_Na43cSOr
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 2 3\n0 1 2\n1 2 3", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where each cell contai...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1 ], [ 0, 1, 1 ], [ 1, 1, 1 ] ], "n": 3, "solution": [ [ 1, 2, 3 ], [ 0, 1, 2 ], ...
reasoning_gym_binary_matrix_mP86NIqp
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 0 1 1 1 2 3 4\n1 1 1 0 0 1 2 3\n2 1 0 0 1 1 2 3\n2 2 1 1 1 0 1 2\n1 1 0 0 1 1 2 2\n0 1 1 1 0 0 1 1\n1 2 2 1 1 1 1 0\n2 2 1 0 0 1 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 0, 1, 1, 1, 1, 1, 1 ], [ 1, 1, 1, 0, 0, 1, 1, 1 ], [ 1, 1, 0, 0, 1, 1...
reasoning_gym_binary_matrix_MxqSBu1o
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 0 1 2\n1 1 2 2\n1 2 1 1\n0 1 0 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where e...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 0, 1, 1 ], [ 1, 1, 1, 1 ], [ 1, 1, 1, 1 ], [ 0, 1, 0, 0 ] ], "n": 4, "solution": [ ...
reasoning_gym_binary_matrix_hyTx6PgZ
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 1 0 1 0 0 1 2 2\n1 0 1 0 0 1 1 2 1 1\n0 1 0 1 1 0 1 1 0 0\n1 1 0 1 2 1 0 1 1 1\n2 2 1 2 1 1 0 1 2 2\n1 1 0 1 0 1 1 2 3 2\n0 1 1 1 1 2 2 3 2 1\n1 1 0 0 1 2 3 2 1 0\n2 2 1 1 1 1 2 1 2 1\n3 3 2 1 0 0 1 0 1 0", "reasoning_gym_entry": {"question": "Given a squa...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 0, 1, 0, 0, 1, 1, 1 ], [ 1, 0, 1, 0, 0, 1, 1, 1, 1, 1 ], [ 0, 1...
reasoning_gym_binary_matrix_P0jeNNIE
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 1\n1 0 0\n0 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where each cell contai...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1 ], [ 1, 0, 0 ], [ 0, 0, 1 ] ], "n": 3, "solution": [ [ 2, 1, 1 ], [ 1, 0, 0 ], ...
reasoning_gym_binary_matrix_x3DV55cU
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 1 0 1 0 1 2 2 3\n0 1 1 2 1 2 2 1 2\n1 0 0 1 0 1 1 0 1\n0 1 1 0 0 0 0 1 2\n1 1 0 1 0 1 1 2 3\n2 2 1 1 1 2 2 3 4\n1 1 1 0 0 1 2 3 4\n0 0 1 1 1 1 2 3 4\n1 1 2 2 1 0 1 2 3", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxi...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 0, 1, 1, 1, 1 ], [ 0, 1, 1, 1, 1, 1, 1, 1, 1 ], [ 1, 0, 0, 1...
reasoning_gym_binary_matrix_kxqZdB0N
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 1 0 1 2\n2 1 1 0 0 0 1\n2 2 1 1 1 0 1\n1 1 0 0 1 1 2\n0 1 0 1 1 1 1\n1 1 0 0 0 0 0\n0 1 1 1 1 1 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1, 0, 1, 1 ], [ 1, 1, 1, 0, 0, 0, 1 ], [ 1, 1, 1, 1, 1, 0, 1 ], ...
reasoning_gym_binary_matrix_gPhxebhM
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 1 0 1\n3 2 1 2 1 0\n4 3 2 1 2 1\n3 2 1 0 1 2\n2 1 2 1 1 2\n1 0 1 1 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of ...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 0, 1 ], [ 1, 1, 1, 1, 1, 0 ], [ 1, 1, 1, 1, 1, 1 ], [ 1, 1, ...
reasoning_gym_binary_matrix_lpPO2kLw
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 2\n1 0 1\n2 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where each cell contai...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1 ], [ 1, 0, 1 ], [ 1, 1, 0 ] ], "n": 3, "solution": [ [ 2, 1, 2 ], [ 1, 0, 1 ], ...
reasoning_gym_binary_matrix_WayjBtfc
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 0 1 0 0 1 1\n1 1 2 1 1 0 1 1 0\n0 0 1 2 2 1 2 2 1\n1 1 1 1 1 2 1 1 1\n0 1 0 0 0 1 0 0 0\n1 1 1 1 1 1 0 1 1\n1 0 0 1 0 1 1 2 2\n2 1 0 1 1 0 0 1 2\n3 2 1 0 1 0 1 2 3", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxi...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 0, 1, 0, 0, 1, 1 ], [ 1, 1, 1, 1, 1, 0, 1, 1, 0 ], [ 0, 0, 1, 1...
reasoning_gym_binary_matrix_XI3oYvXV
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 1 2 1 0 1\n1 0 1 2 2 2 1 2\n1 0 1 2 1 1 2 3\n2 1 2 1 0 0 1 2\n2 1 1 0 1 1 1 2\n1 0 1 0 1 1 0 1\n2 1 2 1 2 1 0 0\n3 2 1 0 1 0 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 1, 1, 0, 1 ], [ 1, 0, 1, 1, 1, 1, 1, 1 ], [ 1, 0, 1, 1, 1, 1...
reasoning_gym_binary_matrix_zMhRe6YO
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 2 2 1 0 1 1\n0 1 1 2 1 1 0\n0 1 0 1 1 1 0\n0 1 1 0 0 1 1\n0 1 0 1 1 2 2\n1 1 1 2 2 3 3\n1 0 1 2 3 4 4", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 0, 1, 1 ], [ 0, 1, 1, 1, 1, 1, 0 ], [ 0, 1, 0, 1, 1, 1, 0 ], ...
reasoning_gym_binary_matrix_DIy6lAVd
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 0 0 1 1 2 3\n2 1 1 1 1 0 1 2\n2 1 0 0 1 0 0 1\n3 2 1 1 1 0 1 1\n4 3 2 2 1 1 0 0\n3 2 1 1 0 1 1 0\n2 1 0 1 0 1 1 1\n2 1 0 1 1 1 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 0, 0, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 1, 0, 1, 1 ], [ 1, 1, 0, 0, 1, 0...
reasoning_gym_binary_matrix_cDcdcHuh
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 1 0 1 2 3 2 3\n1 1 1 2 1 1 2 2 1 2\n0 1 0 1 1 0 1 1 0 1\n1 2 1 1 2 1 2 2 1 0\n1 2 1 0 1 2 3 2 2 1\n0 1 2 1 1 2 2 1 2 1\n1 1 1 1 0 1 1 0 1 0\n1 0 0 0 1 1 0 1 0 1\n1 1 1 1 0 0 1 1 0 0\n0 0 1 1 0 1 2 2 1 1", "reasoning_gym_entry": {"question": "Given a squa...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1, 0, 1, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ], [ 0, 1...
reasoning_gym_binary_matrix_9MzdYXBQ
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 1 2\n1 1 0 0 1\n0 0 1 1 1\n1 1 1 0 0\n1 0 1 1 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1, 1 ], [ 1, 1, 0, 0, 1 ], [ 0, 0, 1, 1, 1 ], [ 1, 1, 1, 0, 0 ]...
reasoning_gym_binary_matrix_ND6VXP7t
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 1 0 0 1 0\n2 2 1 1 1 1 0 0\n1 2 1 0 1 2 1 1\n0 1 2 1 1 2 2 2\n1 2 2 1 0 1 1 2\n0 1 2 2 1 1 0 1\n0 1 2 3 2 1 0 0\n1 2 3 2 1 0 1 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 0, 0, 1, 0 ], [ 1, 1, 1, 1, 1, 1, 0, 0 ], [ 1, 1, 1, 0, 1, 1...
reasoning_gym_binary_matrix_GVIehrB7
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 2 3\n1 2 3 4\n0 1 2 3\n1 2 3 4", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where e...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1, 1 ], [ 1, 1, 1, 1 ], [ 0, 1, 1, 1 ], [ 1, 1, 1, 1 ] ], "n": 4, "solution": [ ...
reasoning_gym_binary_matrix_mHZieiOV
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 1 1 2 3 4\n2 1 1 0 0 1 2 3\n1 0 1 1 1 2 3 2\n1 1 1 2 2 3 2 1\n0 1 0 1 1 2 1 0\n1 2 1 1 0 1 1 0\n0 1 0 1 0 1 2 1\n1 0 0 1 1 2 3 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 1, 1, 1, 1 ], [ 1, 1, 1, 0, 0, 1, 1, 1 ], [ 1, 0, 1, 1, 1, 1...
reasoning_gym_binary_matrix_Ehlhf53J
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 0 1\n2 1 1 0\n2 1 1 0\n1 0 1 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where e...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 0, 1 ], [ 1, 1, 1, 0 ], [ 1, 1, 1, 0 ], [ 1, 0, 1, 1 ] ], "n": 4, "solution": [ ...
reasoning_gym_binary_matrix_Ha9kh2d8
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 1 2 1 2 3\n1 0 0 0 1 0 1 2\n2 1 1 1 2 1 2 3\n1 0 1 0 1 2 1 2\n0 1 1 0 1 1 0 1\n1 1 0 1 2 1 1 1\n0 1 1 0 1 0 1 0\n1 2 2 1 2 1 2 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1, 1, 1, 1, 1 ], [ 1, 0, 0, 0, 1, 0, 1, 1 ], [ 1, 1, 1, 1, 1, 1...
reasoning_gym_binary_matrix_R2aGEbV8
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1\n1 0 0\n1 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where each cell contai...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1 ], [ 1, 0, 0 ], [ 1, 0, 1 ] ], "n": 3, "solution": [ [ 1, 0, 1 ], [ 1, 0, 0 ], ...
reasoning_gym_binary_matrix_aJesRl4B
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 0 1 1\n2 1 0 0 0 0\n2 1 1 1 0 1\n1 0 1 0 1 2\n1 0 1 1 2 1\n2 1 2 2 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of ...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 0, 1, 1 ], [ 1, 1, 0, 0, 0, 0 ], [ 1, 1, 1, 1, 0, 1 ], [ 1, 0, ...
reasoning_gym_binary_matrix_bYn8VtSh
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 1 2\n0 1 0 1\n1 0 1 2\n2 1 2 3", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where e...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1, 1 ], [ 0, 1, 0, 1 ], [ 1, 0, 1, 1 ], [ 1, 1, 1, 1 ] ], "n": 4, "solution": [ ...
reasoning_gym_binary_matrix_2EjVk8wu
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 1\n1 1 0\n2 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where each cell contai...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1 ], [ 1, 1, 0 ], [ 1, 1, 0 ] ], "n": 3, "solution": [ [ 0, 1, 1 ], [ 1, 1, 0 ], ...
reasoning_gym_binary_matrix_E3ywZSKT
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 2 2\n1 2 2 1\n1 1 1 0\n0 0 1 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where e...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1, 1 ], [ 1, 1, 1, 1 ], [ 1, 1, 1, 0 ], [ 0, 0, 1, 1 ] ], "n": 4, "solution": [ ...
reasoning_gym_binary_matrix_9FMNr7DX
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 1 2\n2 1 1 0 1\n1 0 1 1 0\n0 1 1 0 1\n1 0 1 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 1 ], [ 1, 1, 1, 0, 1 ], [ 1, 0, 1, 1, 0 ], [ 0, 1, 1, 0, 1 ]...
reasoning_gym_binary_matrix_mntdgaTQ
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "3 2 2 3 2\n2 1 1 2 1\n1 0 0 1 0\n2 1 1 0 1\n3 2 2 1 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 1 ], [ 1, 0, 0, 1, 0 ], [ 1, 1, 1, 0, 1 ]...
reasoning_gym_binary_matrix_Ybi5SuLT
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 1 0 1 2 1 0\n0 1 1 1 1 2 1\n1 2 1 0 0 1 1\n0 1 2 1 0 1 0\n0 1 2 2 1 0 1\n1 1 2 2 1 1 0\n1 0 1 1 0 1 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 1, 1, 0 ], [ 0, 1, 1, 1, 1, 1, 1 ], [ 1, 1, 1, 0, 0, 1, 1 ], ...
reasoning_gym_binary_matrix_9H3iBhO4
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 1 0 0 1 1 1\n0 1 2 1 1 1 0 0\n1 2 1 0 1 0 1 1\n1 1 0 1 0 1 2 2\n0 1 0 0 1 1 2 3\n1 1 0 1 0 0 1 2\n0 0 1 2 1 1 0 1\n1 1 2 1 0 1 1 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1, 0, 0, 1, 1, 1 ], [ 0, 1, 1, 1, 1, 1, 0, 0 ], [ 1, 1, 1, 0, 1, 0...
reasoning_gym_binary_matrix_a9igEjOE
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 1\n1 1 0\n0 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where each cell contai...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1 ], [ 1, 1, 0 ], [ 0, 0, 1 ] ], "n": 3, "solution": [ [ 0, 1, 1 ], [ 1, 1, 0 ], ...
reasoning_gym_binary_matrix_Jc2quc1M
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 0\n1 0 1\n1 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where each cell contai...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 0 ], [ 1, 0, 1 ], [ 1, 0, 1 ] ], "n": 3, "solution": [ [ 0, 1, 0 ], [ 1, 0, 1 ], ...
reasoning_gym_binary_matrix_0JCkEdAy
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 0 1 1 1 0 1 2 1 0\n0 1 1 0 1 1 0 1 2 1\n1 1 1 1 1 0 0 1 1 0\n1 0 0 1 1 1 1 0 1 1\n2 1 1 1 0 1 2 1 2 1\n1 0 1 1 0 0 1 2 1 0\n2 1 0 1 1 1 0 1 2 1\n1 0 1 1 0 1 1 0 1 2\n2 1 2 1 0 1 1 0 1 2\n3 2 3 2 1 2 2 1 2 3", "reasoning_gym_entry": {"question": "Given a squa...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 0, 1, 1, 1, 0, 1, 1, 1, 0 ], [ 0, 1, 1, 0, 1, 1, 0, 1, 1, 1 ], [ 1, 1...
reasoning_gym_binary_matrix_g9ZdH9Aq
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 1 0\n0 1 1\n0 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where each cell contai...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0 ], [ 0, 1, 1 ], [ 0, 0, 1 ] ], "n": 3, "solution": [ [ 1, 1, 0 ], [ 0, 1, 1 ], ...
reasoning_gym_binary_matrix_u2z5dTrV
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 1 0 1\n1 0 1 0 1\n1 0 1 0 1\n1 0 1 1 1\n2 1 2 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 0, 1 ], [ 1, 0, 1, 0, 1 ], [ 1, 0, 1, 0, 1 ], [ 1, 0, 1, 1, 1 ]...
reasoning_gym_binary_matrix_jscZvkUG
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 1 0 0 1 1 1\n2 1 0 1 1 1 0 0 0\n2 1 0 1 2 2 1 1 1\n1 0 1 2 2 1 1 0 1\n1 1 0 1 1 0 0 0 1\n0 1 1 2 1 1 1 0 1\n1 0 1 1 0 1 1 0 0\n1 1 0 1 1 1 0 1 1\n0 1 1 2 2 1 0 1 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxi...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1, 0, 0, 1, 1, 1 ], [ 1, 1, 0, 1, 1, 1, 0, 0, 0 ], [ 1, 1, 0, 1...
reasoning_gym_binary_matrix_WZ5DZwQc
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 2 2 1\n1 0 1 1 0\n0 1 0 1 1\n1 0 1 2 1\n0 1 2 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 1 ], [ 1, 0, 1, 1, 0 ], [ 0, 1, 0, 1, 1 ], [ 1, 0, 1, 1, 1 ]...
reasoning_gym_binary_matrix_qgHaW7Bm
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 2 1 2 2\n1 0 1 1 0 1 1\n0 1 1 1 0 1 0\n1 1 0 1 1 1 0\n1 1 0 0 1 0 1\n0 1 1 1 1 0 1\n1 1 0 1 2 1 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1, 1, 1, 1 ], [ 1, 0, 1, 1, 0, 1, 1 ], [ 0, 1, 1, 1, 0, 1, 0 ], ...
reasoning_gym_binary_matrix_P6gGzh7Z
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 0 1 1 2 1 2\n1 1 1 1 0 1 0 1\n0 0 1 1 0 0 1 2\n1 1 2 1 1 0 1 2\n2 2 1 0 0 1 2 3\n2 1 0 1 0 1 2 3\n1 2 1 2 1 2 3 4\n0 1 0 1 2 3 4 5", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 0, 1, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 0, 1, 0, 1 ], [ 0, 0, 1, 1, 0, 0...
reasoning_gym_binary_matrix_0ARyM6jc
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 1 2 1 0 1 1 2 1\n0 0 1 1 1 0 0 1 0\n1 1 0 0 1 1 1 2 1\n0 1 1 1 2 2 2 3 2\n1 2 1 1 2 2 3 4 3\n0 1 0 0 1 1 2 3 4\n1 0 1 1 0 0 1 2 3\n1 0 0 1 1 1 0 1 2\n1 0 0 1 0 0 0 1 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxi...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 0, 1, 1, 1, 1 ], [ 0, 0, 1, 1, 1, 0, 0, 1, 0 ], [ 1, 1, 0, 0...
reasoning_gym_binary_matrix_YbVW6K9M
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 1 0 1 2\n2 1 2 2 1 1 2\n1 0 1 1 0 0 1\n1 0 1 0 1 1 2\n2 1 1 0 1 1 2\n2 1 0 1 0 0 1\n1 0 1 1 0 0 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1, 0, 1, 1 ], [ 1, 1, 1, 1, 1, 1, 1 ], [ 1, 0, 1, 1, 0, 0, 1 ], ...
reasoning_gym_binary_matrix_l8ky87Wr
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 2 1 0 1 2\n0 1 0 1 1 2\n1 1 0 0 0 1\n1 1 1 1 0 1\n0 0 0 0 1 2\n0 1 1 1 2 3", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of ...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 0, 1, 1 ], [ 0, 1, 0, 1, 1, 1 ], [ 1, 1, 0, 0, 0, 1 ], [ 1, 1, ...
reasoning_gym_binary_matrix_rsnZBCdf
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 0 1 2 2 2 1\n1 1 2 2 1 1 0\n0 1 2 1 0 1 0\n1 2 1 0 1 2 1\n0 1 1 0 1 1 0\n1 2 1 0 0 1 1\n2 3 2 1 1 2 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 0, 1, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 1, 1, 0 ], [ 0, 1, 1, 1, 0, 1, 0 ], ...
reasoning_gym_binary_matrix_96mJU7kn
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 1 0 0 1 2\n1 1 1 0 1 1 2 3\n0 0 0 1 0 1 2 2\n0 0 0 1 0 0 1 1\n1 1 1 1 0 1 1 0\n2 2 1 0 1 1 0 1\n2 1 0 0 0 1 1 2\n2 1 0 0 1 2 2 3", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1, 0, 0, 1, 1 ], [ 1, 1, 1, 0, 1, 1, 1, 1 ], [ 0, 0, 0, 1, 0, 1...
reasoning_gym_binary_matrix_CjM4Zyt9
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 1 0 0\n0 0 0 1 1 1\n1 0 1 0 1 1\n2 1 1 1 1 0\n2 1 0 1 0 0\n1 0 0 0 0 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of ...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1, 0, 0 ], [ 0, 0, 0, 1, 1, 1 ], [ 1, 0, 1, 0, 1, 1 ], [ 1, 1, ...
reasoning_gym_binary_matrix_pbat6mNN
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "3 2 1 0 1 0\n2 1 2 1 2 1\n1 0 1 2 2 1\n2 1 0 1 1 0\n3 2 1 2 2 1\n4 3 2 3 3 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of ...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 0, 1, 0 ], [ 1, 1, 1, 1, 1, 1 ], [ 1, 0, 1, 1, 1, 1 ], [ 1, 1, ...
reasoning_gym_binary_matrix_t7ZqtKCF
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 1 1 0 1 1 2\n3 2 1 2 1 0 1 0 1\n3 2 2 1 2 1 2 1 2\n2 1 1 0 1 2 3 2 2\n1 0 0 1 2 3 3 2 1\n2 1 1 2 2 3 2 1 0\n3 2 2 2 1 2 1 1 0\n2 1 1 1 0 1 0 1 1\n1 0 0 1 1 1 0 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxi...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 1, 0, 1, 1, 1 ], [ 1, 1, 1, 1, 1, 0, 1, 0, 1 ], [ 1, 1, 1, 1...
reasoning_gym_binary_matrix_Y27zwA8Z
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 0 0 1 2 2 3\n0 1 1 2 1 1 2\n0 1 1 1 0 0 1\n1 1 0 1 1 1 1\n1 0 0 1 1 0 0\n1 0 1 1 0 1 0\n2 1 0 0 1 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 0, 0, 1, 1, 1, 1 ], [ 0, 1, 1, 1, 1, 1, 1 ], [ 0, 1, 1, 1, 0, 0, 1 ], ...
reasoning_gym_binary_matrix_pmMlcUD7
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 1 0\n3 2 1 2 1\n2 1 1 1 0\n1 0 0 1 0\n2 1 1 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 0 ], [ 1, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 0 ], [ 1, 0, 0, 1, 0 ]...
reasoning_gym_binary_matrix_qwKPTv0F
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 2 1 0 1\n0 1 0 1 2\n1 0 1 1 2\n2 1 0 0 1\n3 2 1 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 0, 1 ], [ 0, 1, 0, 1, 1 ], [ 1, 0, 1, 1, 1 ], [ 1, 1, 0, 0, 1 ]...
reasoning_gym_binary_matrix_bBENeMkX
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 1 2\n0 1 0 1\n1 1 0 1\n0 1 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where e...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1, 1 ], [ 0, 1, 0, 1 ], [ 1, 1, 0, 1 ], [ 0, 1, 1, 0 ] ], "n": 4, "solution": [ ...
reasoning_gym_binary_matrix_g667kQWD
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 0 1 2 2 2 1 2 3\n1 1 2 2 1 1 0 1 2\n0 0 1 1 0 0 1 2 3\n1 1 2 1 1 1 2 1 2\n2 1 1 0 0 1 1 0 1\n1 0 1 1 1 2 2 1 0\n1 1 1 1 0 1 2 2 1\n0 1 0 1 1 2 2 1 0\n1 0 1 2 2 3 3 2 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxi...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 0, 1, 1, 1, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 1, 1, 0, 1, 1 ], [ 0, 0, 1, 1...
reasoning_gym_binary_matrix_I5kiVz8K
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 3 3 3 2 1 1 2 3\n1 2 2 2 1 0 0 1 2\n0 1 1 2 2 1 1 0 1\n1 1 0 1 2 1 1 1 0\n2 1 0 1 1 0 0 1 1\n3 2 1 0 1 1 1 2 1\n2 2 1 0 1 2 2 1 0\n1 1 2 1 2 3 3 2 1\n0 0 1 2 3 4 4 3 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxi...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 1, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 1, 0, 0, 1, 1 ], [ 0, 1, 1, 1...
reasoning_gym_binary_matrix_2WCtqUKW
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 0 1 1 0 0 1 2 3\n1 1 1 0 1 1 0 0 1 2\n0 0 0 0 0 0 1 1 2 3\n1 1 1 1 0 1 2 2 3 2\n2 2 2 1 1 1 2 1 2 1\n3 2 1 0 1 0 1 0 1 0\n3 2 1 1 1 1 0 1 1 0\n2 1 0 0 0 0 0 1 2 1\n2 1 0 1 0 1 1 0 1 2\n3 2 1 2 1 2 2 1 2 3", "reasoning_gym_entry": {"question": "Given a squa...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 0, 1, 1, 0, 0, 1, 1, 1 ], [ 1, 1, 1, 0, 1, 1, 0, 0, 1, 1 ], [ 0, 0...
reasoning_gym_binary_matrix_Y0IAeM0N
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 0 1 1 0 1 1 0 1\n2 1 1 0 1 1 0 0 1 0\n1 2 2 1 2 2 1 1 0 0\n0 1 2 1 2 2 1 0 1 1\n1 1 1 0 1 2 2 1 2 2\n1 0 0 1 1 1 2 2 3 3\n1 1 1 1 0 0 1 1 2 2\n0 1 1 1 0 1 1 0 1 1\n1 1 0 1 0 1 2 1 1 0\n2 2 1 1 0 1 2 2 2 1", "reasoning_gym_entry": {"question": "Given a squa...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 0, 1, 1, 0, 1, 1, 0, 1 ], [ 1, 1, 1, 0, 1, 1, 0, 0, 1, 0 ], [ 1, 1...
reasoning_gym_binary_matrix_wpYvKdXT
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 1 1 0 0 1 1 1 0\n1 1 0 1 1 1 1 0 0 0\n0 1 0 1 2 2 1 0 0 1\n0 1 1 2 2 1 0 1 0 1\n1 2 2 3 2 1 1 2 1 0\n0 1 2 2 1 0 1 2 1 0\n1 1 2 1 2 1 2 1 0 1\n1 0 1 0 1 2 3 2 1 2\n0 0 1 1 0 1 2 1 0 1\n0 1 2 1 0 0 1 0 0 1", "reasoning_gym_entry": {"question": "Given a squa...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1, 1, 0, 0, 1, 1, 1, 0 ], [ 1, 1, 0, 1, 1, 1, 1, 0, 0, 0 ], [ 0, 1...
reasoning_gym_binary_matrix_ZxHPhavL
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 2 2 3 2 1 2 3\n0 1 1 2 1 0 1 2\n1 1 0 1 2 1 2 2\n2 2 1 2 2 1 2 1\n1 2 2 1 1 0 1 0\n0 1 1 0 1 0 1 1\n1 1 1 0 0 1 0 0\n1 0 1 1 0 1 1 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 1, 1, 1, 1 ], [ 0, 1, 1, 1, 1, 0, 1, 1 ], [ 1, 1, 0, 1, 1, 1...
reasoning_gym_binary_matrix_OuPoiAnz
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 0 0 1 2\n1 1 1 2 1\n0 1 0 1 0\n0 1 1 1 0\n1 1 0 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 0, 0, 1, 1 ], [ 1, 1, 1, 1, 1 ], [ 0, 1, 0, 1, 0 ], [ 0, 1, 1, 1, 0 ]...
reasoning_gym_binary_matrix_A36q9rZV
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 1\n1 1 1 0\n0 1 2 1\n0 1 2 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where e...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1 ], [ 1, 1, 1, 0 ], [ 0, 1, 1, 1 ], [ 0, 1, 1, 1 ] ], "n": 4, "solution": [ ...
reasoning_gym_binary_matrix_bCm66YLS
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 2 2 1\n2 1 2 2 1 0\n1 0 1 1 0 1\n1 0 0 1 1 2\n1 1 1 1 2 3\n0 1 0 0 1 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of ...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 1, 0 ], [ 1, 0, 1, 1, 0, 1 ], [ 1, 0, ...
reasoning_gym_binary_matrix_668dgEl8
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 0 1\n1 1 2\n2 2 3", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where each cell contai...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 0, 1 ], [ 1, 1, 1 ], [ 1, 1, 1 ] ], "n": 3, "solution": [ [ 0, 0, 1 ], [ 1, 1, 2 ], ...
reasoning_gym_binary_matrix_FIQKI9x2
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 2 1 0\n0 1 0 1\n0 1 1 2\n1 2 2 3", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where e...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 0 ], [ 0, 1, 0, 1 ], [ 0, 1, 1, 1 ], [ 1, 1, 1, 1 ] ], "n": 4, "solution": [ ...
reasoning_gym_binary_matrix_R0rICXqC
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 2 3 4 3 4 4 3 2\n0 1 2 2 3 2 3 3 2 1\n1 2 2 1 2 1 2 2 1 0\n1 1 1 0 1 0 1 1 1 1\n0 0 0 0 1 1 1 0 0 0\n1 1 1 1 1 2 1 1 1 1\n2 2 1 0 0 1 0 1 0 1\n2 2 2 1 0 0 1 2 1 0\n1 1 1 0 1 1 1 2 2 1\n0 0 1 1 1 0 0 1 2 2", "reasoning_gym_entry": {"question": "Given a squa...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1 ], [ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1 ], [ 1, 1...
reasoning_gym_binary_matrix_rRVcN1m2
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 0 1\n2 2 1 1 2\n1 1 1 0 1\n0 0 0 0 1\n1 0 0 1 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 0, 1 ], [ 1, 1, 1, 1, 1 ], [ 1, 1, 1, 0, 1 ], [ 0, 0, 0, 0, 1 ]...
reasoning_gym_binary_matrix_RdALjrxt
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 0 1 2\n1 1 0 1\n2 2 1 1\n2 1 0 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where e...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 0, 1, 1 ], [ 1, 1, 0, 1 ], [ 1, 1, 1, 1 ], [ 1, 1, 0, 0 ] ], "n": 4, "solution": [ ...
reasoning_gym_binary_matrix_5LKOIsdj
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 0 1 1 2 1 2 3\n1 1 0 1 1 0 1 0 1 2\n0 1 1 2 2 1 2 1 0 1\n0 1 2 1 2 1 2 1 1 2\n1 1 1 0 1 0 1 0 1 2\n1 0 1 1 0 1 1 1 2 3\n0 1 2 1 0 0 0 1 2 2\n1 1 2 2 1 1 0 0 1 1\n1 0 1 2 2 1 1 0 1 0\n0 1 0 1 1 0 1 1 0 1", "reasoning_gym_entry": {"question": "Given a squa...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 0, 1, 1, 1, 1, 1, 1 ], [ 1, 1, 0, 1, 1, 0, 1, 0, 1, 1 ], [ 0, 1...
reasoning_gym_binary_matrix_RIULxAIy
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 1 1 0\n0 1 0 0 1\n0 1 1 0 1\n1 2 2 1 2\n2 3 3 2 3", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1, 1, 0 ], [ 0, 1, 0, 0, 1 ], [ 0, 1, 1, 0, 1 ], [ 1, 1, 1, 1, 1 ]...
reasoning_gym_binary_matrix_egIAzrql
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 1 1 2\n0 0 0 0 0 1\n1 0 1 1 1 2\n2 1 2 1 2 3\n1 0 1 0 1 2\n1 0 1 1 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of ...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1, 1, 1 ], [ 0, 0, 0, 0, 0, 1 ], [ 1, 0, 1, 1, 1, 1 ], [ 1, 1, ...
reasoning_gym_binary_matrix_ATJBSrvv
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 0 1 1 1 2 1 0\n1 1 1 0 0 1 0 1\n2 2 2 1 0 1 1 2\n3 2 2 1 0 0 1 2\n2 1 2 1 1 1 0 1\n1 0 1 0 1 1 1 1\n2 1 1 0 0 0 0 0\n3 2 2 1 1 1 1 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 0, 1, 1, 1, 1, 1, 0 ], [ 1, 1, 1, 0, 0, 1, 0, 1 ], [ 1, 1, 1, 1, 0, 1...
reasoning_gym_binary_matrix_lHj52NeZ
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 1 0 1 0 1\n0 1 1 0 1 1 2\n1 1 0 1 2 2 2\n1 1 1 2 3 2 1\n0 0 1 2 2 1 0\n0 1 1 2 2 1 0\n1 1 0 1 2 2 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1, 0, 1, 0, 1 ], [ 0, 1, 1, 0, 1, 1, 1 ], [ 1, 1, 0, 1, 1, 1, 1 ], ...
reasoning_gym_binary_matrix_tNzLKPTB
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 0 1 0\n3 2 1 1 2 1\n3 2 1 2 2 1\n2 1 0 1 1 0\n1 0 1 1 2 1\n2 1 1 0 1 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of ...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 0, 1, 0 ], [ 1, 1, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 1, 1 ], [ 1, 1, ...
reasoning_gym_binary_matrix_rwqW0Pg6
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 2 1\n1 1 1 0\n1 0 1 1\n2 1 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where e...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1, 1 ], [ 1, 1, 1, 0 ], [ 1, 0, 1, 1 ], [ 1, 1, 1, 0 ] ], "n": 4, "solution": [ ...
reasoning_gym_binary_matrix_OasMihGD
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 1 2 3 4\n0 0 1 0 1 2 3\n1 1 1 1 0 1 2\n2 1 0 1 1 2 3\n1 0 0 1 2 3 4\n0 1 1 1 2 3 4\n1 2 1 0 1 2 3", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1, 1, 1, 1 ], [ 0, 0, 1, 0, 1, 1, 1 ], [ 1, 1, 1, 1, 0, 1, 1 ], ...
reasoning_gym_binary_matrix_eI80gjWv
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 0 1 2 1 0 1\n1 0 1 2 1 0 1 1\n2 1 2 2 1 1 1 0\n3 2 2 1 0 0 0 1\n2 1 1 0 1 0 1 2\n1 0 1 0 1 1 0 1\n2 1 1 0 0 1 1 2\n3 2 2 1 0 1 2 3", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 0, 1, 1, 1, 0, 1 ], [ 1, 0, 1, 1, 1, 0, 1, 1 ], [ 1, 1, 1, 1, 1, 1...
reasoning_gym_binary_matrix_VgGiILi4
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "3 2 2 1 0\n2 1 2 2 1\n1 0 1 2 2\n2 1 2 3 3\n1 0 1 2 3", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 0 ], [ 1, 1, 1, 1, 1 ], [ 1, 0, 1, 1, 1 ], [ 1, 1, 1, 1, 1 ]...
reasoning_gym_binary_matrix_2NZIjOmz
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1 1 2 1 1 0 1\n0 1 1 0 1 0 1 1 0\n1 1 2 1 2 1 2 2 1\n1 0 1 0 1 2 2 1 0\n2 1 2 1 0 1 1 0 1\n1 0 1 0 1 1 0 1 2\n0 0 1 0 1 2 1 0 1\n1 0 1 0 1 1 0 1 2\n0 1 2 1 2 2 1 2 3", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxi...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1, 1, 1, 1, 1, 0, 1 ], [ 0, 1, 1, 0, 1, 0, 1, 1, 0 ], [ 1, 1, 1, 1...
reasoning_gym_binary_matrix_gL02rY5M
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 1 0 1 0\n0 0 1 2 1\n1 1 2 3 2\n1 0 1 2 1\n2 1 0 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 0 ], [ 0, 0, 1, 1, 1 ], [ 1, 1, 1, 1, 1 ], [ 1, 0, 1, 1, 1 ]...
reasoning_gym_binary_matrix_bUZSvyE5
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 1 2 2 1 1 0 1\n3 2 1 2 2 1 0 0 1 2\n4 3 2 1 1 2 1 0 1 2\n3 2 1 0 0 1 1 1 1 2\n4 3 2 1 1 0 0 0 0 1\n4 3 2 1 0 0 1 0 1 2\n3 2 3 2 1 1 2 1 0 1\n2 1 2 2 1 0 1 0 0 0\n1 0 1 2 2 1 2 1 1 1\n0 1 2 3 3 2 3 2 2 2", "reasoning_gym_entry": {"question": "Given a squa...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 1, 1, 1, 1, 0, 1 ], [ 1, 1, 1, 1, 1, 1, 0, 0, 1, 1 ], [ 1, 1...
reasoning_gym_binary_matrix_PmAPZfGp
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 1 0 1 0 1\n0 1 1 1 1 2\n0 0 0 0 1 1\n1 1 1 1 0 0\n0 1 0 1 1 1\n1 2 1 1 0 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of ...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 0, 1 ], [ 0, 1, 1, 1, 1, 1 ], [ 0, 0, 0, 0, 1, 1 ], [ 1, 1, ...
reasoning_gym_binary_matrix_eSsiaCMm
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 1\n0 0 1\n1 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where each cell contai...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 1 ], [ 0, 0, 1 ], [ 1, 0, 1 ] ], "n": 3, "solution": [ [ 1, 0, 1 ], [ 0, 0, 1 ], ...
reasoning_gym_binary_matrix_yNnRhXzV
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "3 2 1 1 0 0 1 2\n2 1 0 1 1 1 2 3\n2 1 1 1 0 1 1 2\n1 0 1 2 1 0 0 1\n0 1 2 1 0 0 0 1\n1 2 1 0 1 0 1 2\n2 1 1 1 1 0 1 1\n1 0 0 1 0 1 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 0, 0, 1, 1 ], [ 1, 1, 0, 1, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 0, 1...
reasoning_gym_binary_matrix_yP7bcZ4y
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 3 2 1 2 1 1 0\n1 2 1 0 1 0 1 1\n0 1 2 1 1 1 0 1\n0 1 1 1 0 1 1 0\n1 0 0 0 1 2 2 1\n0 1 1 1 2 3 3 2\n0 0 1 0 1 2 2 1\n1 1 2 1 2 2 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 1, 1, 1, 0 ], [ 1, 1, 1, 0, 1, 0, 1, 1 ], [ 0, 1, 1, 1, 1, 1...
reasoning_gym_binary_matrix_x56LYj8n
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 2 3 4 4 3\n1 2 3 4 4 3 2\n1 1 2 3 3 2 1\n0 0 1 2 2 1 0\n1 1 2 2 2 1 0\n1 0 1 1 1 0 0\n0 1 1 0 0 1 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 1, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 1, 1, 1 ], ...
reasoning_gym_binary_matrix_0XyfmbFP
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "0 1 0 1 1 0 0 0\n0 0 1 1 0 1 0 0\n1 1 2 1 0 0 1 0\n1 2 1 2 1 1 2 1\n0 1 0 1 0 0 1 1\n1 0 1 1 1 1 0 0\n1 1 1 0 1 1 1 1\n0 1 1 0 1 0 1 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nea...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 0, 1, 0, 1, 1, 0, 0, 0 ], [ 0, 0, 1, 1, 0, 1, 0, 0 ], [ 1, 1, 1, 1, 0, 0...
reasoning_gym_binary_matrix_SXGAvtgJ
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "4 3 2 1 0 1\n3 2 3 2 1 1\n2 1 2 2 1 0\n1 0 1 2 1 0\n0 0 0 1 2 1\n1 0 1 2 3 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of ...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 0, 1 ], [ 1, 1, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 1, 0 ], [ 1, 0, ...
reasoning_gym_binary_matrix_LCTr6Nk9
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 1 2 3 4 4\n1 0 0 1 2 3 3\n0 1 1 2 3 3 2\n1 2 2 1 2 2 1\n2 1 1 0 1 1 0\n1 0 1 1 0 1 1\n0 0 0 1 1 2 2", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 1, 1, 1 ], [ 1, 0, 0, 1, 1, 1, 1 ], [ 0, 1, 1, 1, 1, 1, 1 ], ...
reasoning_gym_binary_matrix_E4MxYRTe
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "3 2 1 0\n2 2 1 0\n1 2 1 1\n0 1 0 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the input matrix, where e...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 0 ], [ 1, 1, 1, 0 ], [ 1, 1, 1, 1 ], [ 0, 1, 0, 0 ] ], "n": 4, "solution": [ ...
reasoning_gym_binary_matrix_y5qhLhzr
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 0 0 1\n2 1 0 1 1 0\n3 2 1 2 1 1\n4 3 2 1 0 1\n4 3 2 1 0 0\n5 4 3 2 1 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of ...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 0, 0, 1 ], [ 1, 1, 0, 1, 1, 0 ], [ 1, 1, 1, 1, 1, 1 ], [ 1, 1, ...
reasoning_gym_binary_matrix_zFTIl1cZ
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 0 0 1 0 1 2\n2 1 1 0 1 0 1\n2 1 1 1 2 1 0\n1 0 0 1 1 1 0\n2 1 1 1 0 1 1\n1 0 1 0 0 1 1\n1 0 1 1 1 1 0", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe ou...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 0, 0, 1, 0, 1, 1 ], [ 1, 1, 1, 0, 1, 0, 1 ], [ 1, 1, 1, 1, 1, 1, 0 ], ...
reasoning_gym_binary_matrix_9jI9dSfw
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 0 1 1 2 1 1 0\n1 0 0 1 0 0 1 0 1 1\n1 1 1 0 1 0 1 1 1 0\n0 1 2 1 0 1 0 1 1 1\n1 2 2 2 1 2 1 1 0 1\n1 2 1 2 1 2 1 1 0 1\n0 1 0 1 0 1 0 1 1 2\n0 1 1 0 1 0 1 1 2 3\n0 1 0 1 1 1 1 0 1 2\n1 2 1 1 0 1 2 1 2 3", "reasoning_gym_entry": {"question": "Given a squa...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 0, 1, 1, 1, 1, 1, 0 ], [ 1, 0, 0, 1, 0, 0, 1, 0, 1, 1 ], [ 1, 1...
reasoning_gym_binary_matrix_j1Zmzv66
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 3 2 1 0 1 1 2 3\n1 2 1 2 1 1 0 1 2\n0 1 0 1 1 0 0 1 1\n0 1 1 1 2 1 1 1 0\n1 2 1 0 1 1 0 1 0\n2 1 0 1 2 1 0 1 1\n3 2 1 2 1 2 1 0 1\n4 3 2 1 0 1 0 1 2\n3 2 1 0 1 0 0 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxi...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 0, 1, 1, 1, 1 ], [ 1, 1, 1, 1, 1, 1, 0, 1, 1 ], [ 0, 1, 0, 1...
reasoning_gym_binary_matrix_bwfkoGca
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "2 1 0 1 2\n2 1 1 2 2\n1 0 1 2 1\n1 1 2 1 0\n0 0 1 2 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 0, 1, 1 ], [ 1, 1, 1, 1, 1 ], [ 1, 0, 1, 1, 1 ], [ 1, 1, 1, 1, 0 ]...
reasoning_gym_binary_matrix_W4bdMJSu
reasoning_gym
Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell. The output should be a matrix of the same size as the input matrix, where each cell contains the distance to the nearest 0. Find the distance to the nearest 0 for each cell in the matrix below. Return the outpu...
{"reasoning_gym_dataset": "binary_matrix", "ground_truth": "1 2 3 4 3\n0 1 2 3 2\n1 0 1 2 1\n0 1 2 1 0\n1 2 1 0 1", "reasoning_gym_entry": {"question": "Given a square matrix, your job is to find the taxicab (Manhattan) distance of the nearest 0 for each cell.\n\nThe output should be a matrix of the same size as the in...
{ "difficulty": { "n": [ 3, 10 ], "p_zero": 0.25 }, "matrix": [ [ 1, 1, 1, 1, 1 ], [ 0, 1, 1, 1, 1 ], [ 1, 0, 1, 1, 1 ], [ 0, 1, 1, 1, 0 ]...