prompt
stringlengths
144
465
answer
stringlengths
5
127
metadata
stringlengths
308
686
task
stringclasses
9 values
mode
stringclasses
1 value
level
int64
0
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x42 x44 x49 x5 x6 x34 x63 x55 x31 x19 x20 x62 x44 x8 x51 x11 x3 x12 x53 x63 x58 x45 x11 x2 x10 x36 x43 x38 x2 x2 x25 x5
x42 x44 x49 x5 x6 x34 x63 x55 x31 x19 x20 x62 x8 x51 x11 x3 x12 x53 x58 x45 x2 x10 x36 x43 x38 x25
{'task': 'set', 'seq': ['x42', 'x44', 'x49', 'x5', 'x6', 'x34', 'x63', 'x55', 'x31', 'x19', 'x20', 'x62', 'x44', 'x8', 'x51', 'x11', 'x3', 'x12', 'x53', 'x63', 'x58', 'x45', 'x11', 'x2', 'x10', 'x36', 'x43', 'x38', 'x2', 'x2', 'x25', 'x5'], 'k': 4, 'n': 32, '_time': 0.0002796649932861328, '_task': 'basic_procedural', '...
set
instruct
0
Copy the sequence exactly. (SEQUENCE) x40 x15 x25 x55 x18 x62 x40 x1 x54 x2 x22 x15 x42 x43 x46 x56 x59 x21 x8 x8 x20 x30 x31 x8 x32 x34 x30 x46 x49 x31 x32 x47
x40 x15 x25 x55 x18 x62 x40 x1 x54 x2 x22 x15 x42 x43 x46 x56 x59 x21 x8 x8 x20 x30 x31 x8 x32 x34 x30 x46 x49 x31 x32 x47
{'task': 'identity', 'seq': ['x40', 'x15', 'x25', 'x55', 'x18', 'x62', 'x40', 'x1', 'x54', 'x2', 'x22', 'x15', 'x42', 'x43', 'x46', 'x56', 'x59', 'x21', 'x8', 'x8', 'x20', 'x30', 'x31', 'x8', 'x32', 'x34', 'x30', 'x46', 'x49', 'x31', 'x32', 'x47'], 'k': 4, 'n': 32, '_time': 0.0002722740173339844, '_task': 'basic_proced...
identity
instruct
0
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence.
o2 o2 o0 o1 c0 o2 c2 o2 o0 c2 c1 c0 o1 c1 o0 o0 o1 o1 o0 c0 o1 o3 o0 c0 c0 c2 c0 c2 c1 c1 c3 c1
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003070831298828125, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens':...
dyck_shuffle
instruct
0
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B. (A) x59 x40 x30 x34 x41 x29 x63 x62 x32 x19 x52 x17 x12 x51 x59 x15 (B) x12 x22 x19 x57 x16 x27 x52 x47 x53 x2 x8 x12 x4 x19 x11 x6
x59 x40 x30 x34 x41 x29 x63 x62 x32 x19 x52 x17 x12 x51 x15 x22 x57 x16 x27 x47 x53 x2 x8 x4 x11 x6
{'task': 'union', 'seq': [['x59', 'x40', 'x30', 'x34', 'x41', 'x29', 'x63', 'x62', 'x32', 'x19', 'x52', 'x17', 'x12', 'x51', 'x59', 'x15'], ['x12', 'x22', 'x19', 'x57', 'x16', 'x27', 'x52', 'x47', 'x53', 'x2', 'x8', 'x12', 'x4', 'x19', 'x11', 'x6']], 'k': 4, 'n': 32, '_time': 0.00044989585876464844, '_task': 'basic_pro...
union
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x62; PUSH x18; PUSH x53; PUSH x54; PUSH x31; PUSH x23; PUSH x28; PUSH x30; PUSH x30; PUSH x16; PUSH x44; PUSH x6; PUSH x41; PUSH x4; POP; PUSH x36; POP; P...
x16 x30 x30 x28 x23 x31 x54 x53 x18 x62
{'task': 'stack', 'seq': ['PUSH x62', 'PUSH x18', 'PUSH x53', 'PUSH x54', 'PUSH x31', 'PUSH x23', 'PUSH x28', 'PUSH x30', 'PUSH x30', 'PUSH x16', 'PUSH x44', 'PUSH x6', 'PUSH x41', 'PUSH x4', 'POP', 'PUSH x36', 'POP', 'PUSH x1', 'PUSH x43', 'PUSH x5', 'PUSH x42', 'PUSH x1', 'POP', 'POP', 'PUSH x44', 'POP', 'POP', 'POP'...
stack
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x33 x6 x31 x3 x6 x41 x40 x30 x48 x41 x10 x26 x38 x31 x55 x1 x24 x5 x16 x61 x51 x10 x56 x61 x7 x22 x60 x17 x20 x38 x44 x16 (TARGET) x23
x33 x6 x31 x3 x6 x41 x40 x30 x48 x41 x10 x26 x38 x31 x55 x1 x24 x5 x16 x61 x51 x10 x56 x61 x7 x22 x60 x17 x20 x38 x44 x16
{'task': 'delete', 'seq': [['x33', 'x6', 'x31', 'x3', 'x6', 'x41', 'x40', 'x30', 'x48', 'x41', 'x10', 'x26', 'x38', 'x31', 'x55', 'x1', 'x24', 'x5', 'x16', 'x61', 'x51', 'x10', 'x56', 'x61', 'x7', 'x22', 'x60', 'x17', 'x20', 'x38', 'x44', 'x16'], 'x23'], 'k': 4, 'n': 32, '_time': 0.0003139972686767578, '_task': 'basic_...
delete
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x58 x20 x58 x2 x44 x11 x26 x42 x60 x57 x37 x21 x62 x50 x30 x17 x43 x27 x41 x30 x27 x48 x27 x8 x50 x19 x21 x51 x31 x23 x19 x34
x58 x20 x2 x44 x11 x26 x42 x60 x57 x37 x21 x62 x50 x30 x17 x43 x27 x41 x48 x8 x19 x51 x31 x23 x34
{'task': 'set', 'seq': ['x58', 'x20', 'x58', 'x2', 'x44', 'x11', 'x26', 'x42', 'x60', 'x57', 'x37', 'x21', 'x62', 'x50', 'x30', 'x17', 'x43', 'x27', 'x41', 'x30', 'x27', 'x48', 'x27', 'x8', 'x50', 'x19', 'x21', 'x51', 'x31', 'x23', 'x19', 'x34'], 'k': 4, 'n': 32, '_time': 0.00027632713317871094, '_task': 'basic_procedu...
set
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x46; PUSH x6; PUSH x3; PUSH x14; PUSH x6; PUSH x63; PUSH x2; POP; PUSH x61; PUSH x28; PUSH x42; POP; PUSH x62; PUSH x22; PUSH x32; PUSH x20; POP; PUSH x63...
x25 x51 x22 x62 x28 x61 x63 x6 x14 x3 x6 x46
{'task': 'stack', 'seq': ['PUSH x46', 'PUSH x6', 'PUSH x3', 'PUSH x14', 'PUSH x6', 'PUSH x63', 'PUSH x2', 'POP', 'PUSH x61', 'PUSH x28', 'PUSH x42', 'POP', 'PUSH x62', 'PUSH x22', 'PUSH x32', 'PUSH x20', 'POP', 'PUSH x63', 'POP', 'POP', 'PUSH x47', 'PUSH x60', 'POP', 'PUSH x6', 'PUSH x32', 'PUSH x53', 'POP', 'POP', 'PO...
stack
instruct
0
Copy the sequence exactly. (SEQUENCE) x12 x62 x16 x14 x36 x62 x13 x9 x42 x19 x62 x51 x53 x57 x22 x11 x24 x12 x55 x42 x63 x33 x13 x47 x44 x61 x5 x1 x32 x6 x58 x45
x12 x62 x16 x14 x36 x62 x13 x9 x42 x19 x62 x51 x53 x57 x22 x11 x24 x12 x55 x42 x63 x33 x13 x47 x44 x61 x5 x1 x32 x6 x58 x45
{'task': 'identity', 'seq': ['x12', 'x62', 'x16', 'x14', 'x36', 'x62', 'x13', 'x9', 'x42', 'x19', 'x62', 'x51', 'x53', 'x57', 'x22', 'x11', 'x24', 'x12', 'x55', 'x42', 'x63', 'x33', 'x13', 'x47', 'x44', 'x61', 'x5', 'x1', 'x32', 'x6', 'x58', 'x45'], 'k': 4, 'n': 32, '_time': 0.00025177001953125, '_task': 'basic_procedu...
identity
instruct
0
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens. Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence.
o2 c2 o0 c0 o3 c3 o1 c1 o3 o1 o1 c1 c1 c3 o3 o3 c3 o3 o2 o3 o2 c2 o0 o0 o0 c0 c0 c0 c3 c2 c3 c3
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00023603439331054688, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 39, '_answer_tokens': 64}
dyck
instruct
0
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence.
o3 c3 o3 o2 c2 o2 c3 o3 c2 c3 o3 o2 o1 c1 c3 o3 c2 o1 o2 o2 c3 c1 c2 o0 c0 c2 o2 c2 o2 c2 o2 c2
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.000308990478515625, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens': ...
dyck_shuffle
instruct
0
Copy the sequence exactly. (SEQUENCE) x57 x13 x26 x25 x59 x60 x28 x45 x62 x25 x59 x38 x43 x43 x5 x44 x5 x9 x63 x50 x44 x51 x63 x19 x43 x47 x9 x63 x51 x43 x28 x1
x57 x13 x26 x25 x59 x60 x28 x45 x62 x25 x59 x38 x43 x43 x5 x44 x5 x9 x63 x50 x44 x51 x63 x19 x43 x47 x9 x63 x51 x43 x28 x1
{'task': 'identity', 'seq': ['x57', 'x13', 'x26', 'x25', 'x59', 'x60', 'x28', 'x45', 'x62', 'x25', 'x59', 'x38', 'x43', 'x43', 'x5', 'x44', 'x5', 'x9', 'x63', 'x50', 'x44', 'x51', 'x63', 'x19', 'x43', 'x47', 'x9', 'x63', 'x51', 'x43', 'x28', 'x1'], 'k': 4, 'n': 32, '_time': 0.00027108192443847656, '_task': 'basic_proce...
identity
instruct
0
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens. Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence.
o0 o1 o2 c2 c1 c0 o0 o3 o3 c3 c3 c0 o0 c0 o1 c1 o3 c3 o0 o0 o3 c3 o3 c3 c0 c0 o1 o2 o2 c2 c2 c1
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00023436546325683594, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 39, '_answer_tokens': 64}
dyck
instruct
0
Copy the sequence exactly. (SEQUENCE) x42 x23 x64 x14 x58 x11 x28 x37 x37 x16 x34 x4 x29 x21 x52 x42 x44 x52 x45 x5 x29 x14 x8 x15 x10 x14 x26 x9 x56 x45 x23 x2
x42 x23 x64 x14 x58 x11 x28 x37 x37 x16 x34 x4 x29 x21 x52 x42 x44 x52 x45 x5 x29 x14 x8 x15 x10 x14 x26 x9 x56 x45 x23 x2
{'task': 'identity', 'seq': ['x42', 'x23', 'x64', 'x14', 'x58', 'x11', 'x28', 'x37', 'x37', 'x16', 'x34', 'x4', 'x29', 'x21', 'x52', 'x42', 'x44', 'x52', 'x45', 'x5', 'x29', 'x14', 'x8', 'x15', 'x10', 'x14', 'x26', 'x9', 'x56', 'x45', 'x23', 'x2'], 'k': 4, 'n': 32, '_time': 0.0002722740173339844, '_task': 'basic_proced...
identity
instruct
0
Copy the sequence exactly. (SEQUENCE) x36 x47 x39 x14 x47 x24 x44 x27 x32 x55 x55 x39 x20 x28 x17 x54 x13 x52 x13 x47 x16 x50 x9 x62 x35 x42 x38 x48 x22 x32 x57 x41
x36 x47 x39 x14 x47 x24 x44 x27 x32 x55 x55 x39 x20 x28 x17 x54 x13 x52 x13 x47 x16 x50 x9 x62 x35 x42 x38 x48 x22 x32 x57 x41
{'task': 'identity', 'seq': ['x36', 'x47', 'x39', 'x14', 'x47', 'x24', 'x44', 'x27', 'x32', 'x55', 'x55', 'x39', 'x20', 'x28', 'x17', 'x54', 'x13', 'x52', 'x13', 'x47', 'x16', 'x50', 'x9', 'x62', 'x35', 'x42', 'x38', 'x48', 'x22', 'x32', 'x57', 'x41'], 'k': 4, 'n': 32, '_time': 0.0002720355987548828, '_task': 'basic_pr...
identity
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x35; PUSH x15; PUSH x3; PUSH x57; POP; PUSH x48; PUSH x36; PUSH x60; PUSH x24; POP; POP; PUSH x52; PUSH x57; PUSH x3; PUSH x19; PUSH x6; PUSH x34; PUSH x2...
x21 x34 x6 x19 x3 x57 x52 x36 x48 x3 x15 x35
{'task': 'stack', 'seq': ['PUSH x35', 'PUSH x15', 'PUSH x3', 'PUSH x57', 'POP', 'PUSH x48', 'PUSH x36', 'PUSH x60', 'PUSH x24', 'POP', 'POP', 'PUSH x52', 'PUSH x57', 'PUSH x3', 'PUSH x19', 'PUSH x6', 'PUSH x34', 'PUSH x26', 'PUSH x10', 'PUSH x37', 'POP', 'PUSH x1', 'POP', 'PUSH x31', 'POP', 'POP', 'POP', 'PUSH x21', 'P...
stack
instruct
0
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B. (A) x59 x2 x34 x45 x53 x47 x5 x39 x49 x11 x21 x22 x2 x10 x2 x51 (B) x8 x13 x59 x52 x58 x34 x1 x46 x6 x27 x16 x64 x40 x56 x23 x57
x59 x2 x34 x45 x53 x47 x5 x39 x49 x11 x21 x22 x10 x51 x8 x13 x52 x58 x1 x46 x6 x27 x16 x64 x40 x56 x23 x57
{'task': 'union', 'seq': [['x59', 'x2', 'x34', 'x45', 'x53', 'x47', 'x5', 'x39', 'x49', 'x11', 'x21', 'x22', 'x2', 'x10', 'x2', 'x51'], ['x8', 'x13', 'x59', 'x52', 'x58', 'x34', 'x1', 'x46', 'x6', 'x27', 'x16', 'x64', 'x40', 'x56', 'x23', 'x57']], 'k': 4, 'n': 32, '_time': 0.00030040740966796875, '_task': 'basic_proced...
union
instruct
0
Copy the sequence exactly. (SEQUENCE) x64 x42 x53 x4 x21 x11 x42 x8 x38 x3 x2 x19 x17 x52 x22 x30 x38 x38 x39 x61 x33 x25 x26 x59 x56 x25 x57 x5 x34 x56 x34 x44
x64 x42 x53 x4 x21 x11 x42 x8 x38 x3 x2 x19 x17 x52 x22 x30 x38 x38 x39 x61 x33 x25 x26 x59 x56 x25 x57 x5 x34 x56 x34 x44
{'task': 'identity', 'seq': ['x64', 'x42', 'x53', 'x4', 'x21', 'x11', 'x42', 'x8', 'x38', 'x3', 'x2', 'x19', 'x17', 'x52', 'x22', 'x30', 'x38', 'x38', 'x39', 'x61', 'x33', 'x25', 'x26', 'x59', 'x56', 'x25', 'x57', 'x5', 'x34', 'x56', 'x34', 'x44'], 'k': 4, 'n': 32, '_time': 0.00027561187744140625, '_task': 'basic_proce...
identity
instruct
0
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence.
o2 o2 c2 o1 c2 o0 c0 c1 o1 c1 o2 o3 c3 c2 o2 o3 c2 o2 o2 c2 c3 o0 c2 o1 c0 o0 c0 c1 o3 c3 o2 c2
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002956390380859375, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens':...
dyck_shuffle
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x11 x59 x56 x44 x39 x26 x61 x8 x30 x64 x46 x42 x6 x13 x63 x61 x33 x4 x17 x7 x20 x12 x12 x7 x23 x53 x52 x18 x48 x1 x64 x49
x1 x4 x6 x7 x7 x8 x11 x12 x12 x13 x17 x18 x20 x23 x26 x30 x33 x39 x42 x44 x46 x48 x49 x52 x53 x56 x59 x61 x61 x63 x64 x64
{'task': 'sort', 'seq': ['x11', 'x59', 'x56', 'x44', 'x39', 'x26', 'x61', 'x8', 'x30', 'x64', 'x46', 'x42', 'x6', 'x13', 'x63', 'x61', 'x33', 'x4', 'x17', 'x7', 'x20', 'x12', 'x12', 'x7', 'x23', 'x53', 'x52', 'x18', 'x48', 'x1', 'x64', 'x49'], 'k': 4, 'n': 32, '_time': 0.0002892017364501953, '_task': 'basic_procedural'...
sort
instruct
0
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B. (A) x13 x13 x64 x21 x48 x27 x22 x1 x37 x33 x13 x28 x9 x46 x29 x24 (B) x60 x21 x37 x60 x13 x18 x10 x53 x1 x51 x63 x58 x38 x44 x37 x45
x13 x64 x21 x48 x27 x22 x1 x37 x33 x28 x9 x46 x29 x24 x60 x18 x10 x53 x51 x63 x58 x38 x44 x45
{'task': 'union', 'seq': [['x13', 'x13', 'x64', 'x21', 'x48', 'x27', 'x22', 'x1', 'x37', 'x33', 'x13', 'x28', 'x9', 'x46', 'x29', 'x24'], ['x60', 'x21', 'x37', 'x60', 'x13', 'x18', 'x10', 'x53', 'x1', 'x51', 'x63', 'x58', 'x38', 'x44', 'x37', 'x45']], 'k': 4, 'n': 32, '_time': 0.00029754638671875, '_task': 'basic_proce...
union
instruct
0
Copy the sequence exactly. (SEQUENCE) x5 x1 x6 x35 x10 x44 x61 x60 x45 x52 x39 x18 x25 x51 x55 x45 x41 x39 x49 x2 x51 x45 x9 x43 x4 x9 x18 x50 x54 x35 x48 x29
x5 x1 x6 x35 x10 x44 x61 x60 x45 x52 x39 x18 x25 x51 x55 x45 x41 x39 x49 x2 x51 x45 x9 x43 x4 x9 x18 x50 x54 x35 x48 x29
{'task': 'identity', 'seq': ['x5', 'x1', 'x6', 'x35', 'x10', 'x44', 'x61', 'x60', 'x45', 'x52', 'x39', 'x18', 'x25', 'x51', 'x55', 'x45', 'x41', 'x39', 'x49', 'x2', 'x51', 'x45', 'x9', 'x43', 'x4', 'x9', 'x18', 'x50', 'x54', 'x35', 'x48', 'x29'], 'k': 4, 'n': 32, '_time': 0.0004119873046875, '_task': 'basic_procedural'...
identity
instruct
0
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B. (A) x46 x13 x23 x27 x40 x45 x63 x25 x9 x2 x51 x32 x57 x43 x62 x48 (B) x51 x60 x6 x62 x22 x17 x18 x38 x45 x35 x9 x57 x36 x55 x54 x13
x46 x13 x23 x27 x40 x45 x63 x25 x9 x2 x51 x32 x57 x43 x62 x48 x60 x6 x22 x17 x18 x38 x35 x36 x55 x54
{'task': 'union', 'seq': [['x46', 'x13', 'x23', 'x27', 'x40', 'x45', 'x63', 'x25', 'x9', 'x2', 'x51', 'x32', 'x57', 'x43', 'x62', 'x48'], ['x51', 'x60', 'x6', 'x62', 'x22', 'x17', 'x18', 'x38', 'x45', 'x35', 'x9', 'x57', 'x36', 'x55', 'x54', 'x13']], 'k': 4, 'n': 32, '_time': 0.0002982616424560547, '_task': 'basic_proc...
union
instruct
0
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence.
o2 c2 o1 o3 o3 c3 c3 o3 c1 o2 c2 c3 o0 c0 o2 o1 c1 o3 o0 c0 o3 c2 o1 o1 o1 o2 c1 c1 c1 c2 c3 c3
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002987384796142578, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens':...
dyck_shuffle
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x20; PUSH x27; PUSH x62; PUSH x51; PUSH x6; PUSH x54; POP; PUSH x39; PUSH x16; PUSH x12; POP; PUSH x41; POP; PUSH x7; PUSH x8; PUSH x49; PUSH x41; PUSH x3...
x7 x16 x39 x6 x51 x62 x27 x20
{'task': 'stack', 'seq': ['PUSH x20', 'PUSH x27', 'PUSH x62', 'PUSH x51', 'PUSH x6', 'PUSH x54', 'POP', 'PUSH x39', 'PUSH x16', 'PUSH x12', 'POP', 'PUSH x41', 'POP', 'PUSH x7', 'PUSH x8', 'PUSH x49', 'PUSH x41', 'PUSH x33', 'PUSH x63', 'PUSH x44', 'PUSH x37', 'PUSH x13', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP',...
stack
instruct
0
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence.
o1 o0 c0 c1 o0 c0 o3 o3 o1 o0 o2 c0 o0 o0 c2 c1 o3 o1 c3 c1 c3 c0 c3 o3 o3 o0 o3 c3 c3 c3 c0 c0
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00045037269592285156, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens'...
dyck_shuffle
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x39 x39 x52 x31 x5 x27 x21 x55 x43 x39 x39 x60 x29 x9 x51 x44 x8 x24 x39 x61 x6 x41 x19 x58 x29 x31 x24 x49 x34 x59 x39 x23
x39 x52 x31 x5 x27 x21 x55 x43 x60 x29 x9 x51 x44 x8 x24 x61 x6 x41 x19 x58 x49 x34 x59 x23
{'task': 'set', 'seq': ['x39', 'x39', 'x52', 'x31', 'x5', 'x27', 'x21', 'x55', 'x43', 'x39', 'x39', 'x60', 'x29', 'x9', 'x51', 'x44', 'x8', 'x24', 'x39', 'x61', 'x6', 'x41', 'x19', 'x58', 'x29', 'x31', 'x24', 'x49', 'x34', 'x59', 'x39', 'x23'], 'k': 4, 'n': 32, '_time': 0.0002791881561279297, '_task': 'basic_procedural...
set
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x41 x36 x60 x7 x50 x4 x42 x48 x36 x18 x32 x28 x59 x16 x46 x55 x31 x11 x8 x33 x53 x56 x14 x50 x46 x39 x47 x18 x44 x12 x30 x2 (TARGET) x6
x41 x36 x60 x7 x50 x4 x42 x48 x36 x18 x32 x28 x59 x16 x46 x55 x31 x11 x8 x33 x53 x56 x14 x50 x46 x39 x47 x18 x44 x12 x30 x2
{'task': 'delete', 'seq': [['x41', 'x36', 'x60', 'x7', 'x50', 'x4', 'x42', 'x48', 'x36', 'x18', 'x32', 'x28', 'x59', 'x16', 'x46', 'x55', 'x31', 'x11', 'x8', 'x33', 'x53', 'x56', 'x14', 'x50', 'x46', 'x39', 'x47', 'x18', 'x44', 'x12', 'x30', 'x2'], 'x6'], 'k': 4, 'n': 32, '_time': 0.00030231475830078125, '_task': 'basi...
delete
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x56; POP; PUSH x23; POP; PUSH x34; POP; PUSH x7; PUSH x63; PUSH x62; PUSH x52; POP; PUSH x32; PUSH x12; PUSH x37; POP; POP; POP; PUSH x41; PUSH x51; PUSH ...
x20 x55
{'task': 'stack', 'seq': ['PUSH x56', 'POP', 'PUSH x23', 'POP', 'PUSH x34', 'POP', 'PUSH x7', 'PUSH x63', 'PUSH x62', 'PUSH x52', 'POP', 'PUSH x32', 'PUSH x12', 'PUSH x37', 'POP', 'POP', 'POP', 'PUSH x41', 'PUSH x51', 'PUSH x3', 'PUSH x34', 'POP', 'POP', 'POP', 'POP', 'POP', 'PUSH x56', 'POP', 'POP', 'POP', 'PUSH x55',...
stack
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x12 x36 x56 x52 x13 x43 x34 x38 x62 x2 x52 x47 x15 x15 x23 x18 x8 x25 x2 x62 x57 x7 x36 x7 x27 x30 x23 x57 x49 x10 x59 x44
x12 x36 x56 x52 x13 x43 x34 x38 x62 x2 x47 x15 x23 x18 x8 x25 x57 x7 x27 x30 x49 x10 x59 x44
{'task': 'set', 'seq': ['x12', 'x36', 'x56', 'x52', 'x13', 'x43', 'x34', 'x38', 'x62', 'x2', 'x52', 'x47', 'x15', 'x15', 'x23', 'x18', 'x8', 'x25', 'x2', 'x62', 'x57', 'x7', 'x36', 'x7', 'x27', 'x30', 'x23', 'x57', 'x49', 'x10', 'x59', 'x44'], 'k': 4, 'n': 32, '_time': 0.0004184246063232422, '_task': 'basic_procedural'...
set
instruct
0
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens. Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence.
o3 o3 o3 c3 c3 c3 o2 o3 c3 o2 c2 o0 c0 c2 o2 o2 c2 o0 c0 o1 c1 c2 o1 c1 o2 o3 o3 c3 o3 c3 c3 c2
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00027942657470703125, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 39, '_answer_tokens': 64}
dyck
instruct
0
Copy the sequence exactly. (SEQUENCE) x58 x32 x41 x59 x12 x37 x3 x31 x4 x24 x17 x3 x40 x18 x49 x1 x46 x13 x61 x41 x39 x49 x23 x56 x43 x53 x3 x63 x31 x49 x44 x64
x58 x32 x41 x59 x12 x37 x3 x31 x4 x24 x17 x3 x40 x18 x49 x1 x46 x13 x61 x41 x39 x49 x23 x56 x43 x53 x3 x63 x31 x49 x44 x64
{'task': 'identity', 'seq': ['x58', 'x32', 'x41', 'x59', 'x12', 'x37', 'x3', 'x31', 'x4', 'x24', 'x17', 'x3', 'x40', 'x18', 'x49', 'x1', 'x46', 'x13', 'x61', 'x41', 'x39', 'x49', 'x23', 'x56', 'x43', 'x53', 'x3', 'x63', 'x31', 'x49', 'x44', 'x64'], 'k': 4, 'n': 32, '_time': 0.0002727508544921875, '_task': 'basic_proced...
identity
instruct
0
Reverse the sequence. (SEQUENCE) x29 x43 x9 x45 x55 x6 x36 x42 x4 x39 x52 x34 x62 x56 x18 x55 x8 x7 x44 x12 x3 x13 x12 x5 x51 x54 x24 x64 x12 x31 x39 x21
x21 x39 x31 x12 x64 x24 x54 x51 x5 x12 x13 x3 x12 x44 x7 x8 x55 x18 x56 x62 x34 x52 x39 x4 x42 x36 x6 x55 x45 x9 x43 x29
{'task': 'reverse', 'seq': ['x29', 'x43', 'x9', 'x45', 'x55', 'x6', 'x36', 'x42', 'x4', 'x39', 'x52', 'x34', 'x62', 'x56', 'x18', 'x55', 'x8', 'x7', 'x44', 'x12', 'x3', 'x13', 'x12', 'x5', 'x51', 'x54', 'x24', 'x64', 'x12', 'x31', 'x39', 'x21'], 'k': 4, 'n': 32, '_time': 0.0002987384796142578, '_task': 'basic_procedura...
reverse
instruct
0
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens. Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence.
o2 c2 o1 o2 c2 o1 c1 c1 o2 o3 o3 c3 o1 c1 o0 c0 o0 o1 o3 c3 c1 o1 c1 o1 o3 o2 c2 c3 c1 c0 c3 c2
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003838539123535156, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 39, '_answer_tokens': 64}
dyck
instruct
0
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence.
o1 o1 o2 c2 o3 o0 c0 c1 o3 c3 o0 c3 o0 c1 o1 c0 o2 c1 c2 c0 o2 o0 c2 o1 o3 o2 c3 o0 c1 c2 c0 c0
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003254413604736328, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens':...
dyck_shuffle
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x57; POP; PUSH x52; PUSH x41; PUSH x43; PUSH x63; PUSH x6; POP; PUSH x38; PUSH x17; PUSH x43; PUSH x5; PUSH x42; PUSH x55; POP; PUSH x4; POP; PUSH x5; POP...
x63 x43 x41 x52
{'task': 'stack', 'seq': ['PUSH x57', 'POP', 'PUSH x52', 'PUSH x41', 'PUSH x43', 'PUSH x63', 'PUSH x6', 'POP', 'PUSH x38', 'PUSH x17', 'PUSH x43', 'PUSH x5', 'PUSH x42', 'PUSH x55', 'POP', 'PUSH x4', 'POP', 'PUSH x5', 'POP', 'PUSH x22', 'PUSH x36', 'PUSH x58', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'PU...
stack
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x46 x54 x16 x26 x42 x8 x58 x35 x46 x51 x1 x56 x6 x38 x64 x17 x16 x61 x28 x14 x1 x40 x17 x3 x50 x43 x12 x40 x17 x48 x46 x17
x46 x54 x16 x26 x42 x8 x58 x35 x51 x1 x56 x6 x38 x64 x17 x61 x28 x14 x40 x3 x50 x43 x12 x48
{'task': 'set', 'seq': ['x46', 'x54', 'x16', 'x26', 'x42', 'x8', 'x58', 'x35', 'x46', 'x51', 'x1', 'x56', 'x6', 'x38', 'x64', 'x17', 'x16', 'x61', 'x28', 'x14', 'x1', 'x40', 'x17', 'x3', 'x50', 'x43', 'x12', 'x40', 'x17', 'x48', 'x46', 'x17'], 'k': 4, 'n': 32, '_time': 0.00029349327087402344, '_task': 'basic_procedural...
set
instruct
0
Reverse the sequence. (SEQUENCE) x13 x13 x53 x50 x28 x12 x47 x6 x44 x32 x53 x34 x21 x25 x8 x31 x30 x35 x13 x36 x35 x3 x27 x21 x32 x38 x59 x27 x23 x12 x37 x29
x29 x37 x12 x23 x27 x59 x38 x32 x21 x27 x3 x35 x36 x13 x35 x30 x31 x8 x25 x21 x34 x53 x32 x44 x6 x47 x12 x28 x50 x53 x13 x13
{'task': 'reverse', 'seq': ['x13', 'x13', 'x53', 'x50', 'x28', 'x12', 'x47', 'x6', 'x44', 'x32', 'x53', 'x34', 'x21', 'x25', 'x8', 'x31', 'x30', 'x35', 'x13', 'x36', 'x35', 'x3', 'x27', 'x21', 'x32', 'x38', 'x59', 'x27', 'x23', 'x12', 'x37', 'x29'], 'k': 4, 'n': 32, '_time': 0.00029969215393066406, '_task': 'basic_proc...
reverse
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x42 x26 x6 x62 x7 x2 x64 x6 x41 x57 x1 x50 x49 x19 x52 x25 x33 x49 x43 x39 x4 x40 x9 x14 x49 x16 x15 x31 x48 x26 x58 x46
x1 x2 x4 x6 x6 x7 x9 x14 x15 x16 x19 x25 x26 x26 x31 x33 x39 x40 x41 x42 x43 x46 x48 x49 x49 x49 x50 x52 x57 x58 x62 x64
{'task': 'sort', 'seq': ['x42', 'x26', 'x6', 'x62', 'x7', 'x2', 'x64', 'x6', 'x41', 'x57', 'x1', 'x50', 'x49', 'x19', 'x52', 'x25', 'x33', 'x49', 'x43', 'x39', 'x4', 'x40', 'x9', 'x14', 'x49', 'x16', 'x15', 'x31', 'x48', 'x26', 'x58', 'x46'], 'k': 4, 'n': 32, '_time': 0.0002875328063964844, '_task': 'basic_procedural',...
sort
instruct
0
Copy the sequence exactly. (SEQUENCE) x49 x58 x41 x57 x33 x10 x6 x24 x61 x34 x12 x15 x64 x41 x44 x20 x12 x35 x56 x55 x56 x30 x47 x49 x30 x42 x21 x57 x54 x49 x17 x51
x49 x58 x41 x57 x33 x10 x6 x24 x61 x34 x12 x15 x64 x41 x44 x20 x12 x35 x56 x55 x56 x30 x47 x49 x30 x42 x21 x57 x54 x49 x17 x51
{'task': 'identity', 'seq': ['x49', 'x58', 'x41', 'x57', 'x33', 'x10', 'x6', 'x24', 'x61', 'x34', 'x12', 'x15', 'x64', 'x41', 'x44', 'x20', 'x12', 'x35', 'x56', 'x55', 'x56', 'x30', 'x47', 'x49', 'x30', 'x42', 'x21', 'x57', 'x54', 'x49', 'x17', 'x51'], 'k': 4, 'n': 32, '_time': 0.0002899169921875, '_task': 'basic_proce...
identity
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x15 x45 x63 x23 x12 x7 x55 x3 x42 x17 x9 x8 x28 x51 x30 x14 x2 x16 x20 x9 x19 x33 x2 x11 x15 x33 x5 x46 x56 x60 x12 x36
x2 x2 x3 x5 x7 x8 x9 x9 x11 x12 x12 x14 x15 x15 x16 x17 x19 x20 x23 x28 x30 x33 x33 x36 x42 x45 x46 x51 x55 x56 x60 x63
{'task': 'sort', 'seq': ['x15', 'x45', 'x63', 'x23', 'x12', 'x7', 'x55', 'x3', 'x42', 'x17', 'x9', 'x8', 'x28', 'x51', 'x30', 'x14', 'x2', 'x16', 'x20', 'x9', 'x19', 'x33', 'x2', 'x11', 'x15', 'x33', 'x5', 'x46', 'x56', 'x60', 'x12', 'x36'], 'k': 4, 'n': 32, '_time': 0.00031638145446777344, '_task': 'basic_procedural',...
sort
instruct
0
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence.
o1 c1 o0 c0 o1 o0 o1 c1 o1 c0 c1 c1 o1 o1 o0 o3 o3 c1 c0 c1 c3 c3 o0 c0 o2 c2 o0 c0 o2 o1 c2 c1
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00045037269592285156, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens'...
dyck_shuffle
instruct
0
Reverse the sequence. (SEQUENCE) x21 x23 x15 x2 x54 x55 x8 x37 x33 x18 x57 x20 x58 x30 x36 x56 x29 x39 x12 x36 x47 x24 x3 x62 x17 x29 x61 x54 x50 x53 x36 x25
x25 x36 x53 x50 x54 x61 x29 x17 x62 x3 x24 x47 x36 x12 x39 x29 x56 x36 x30 x58 x20 x57 x18 x33 x37 x8 x55 x54 x2 x15 x23 x21
{'task': 'reverse', 'seq': ['x21', 'x23', 'x15', 'x2', 'x54', 'x55', 'x8', 'x37', 'x33', 'x18', 'x57', 'x20', 'x58', 'x30', 'x36', 'x56', 'x29', 'x39', 'x12', 'x36', 'x47', 'x24', 'x3', 'x62', 'x17', 'x29', 'x61', 'x54', 'x50', 'x53', 'x36', 'x25'], 'k': 4, 'n': 32, '_time': 0.0002827644348144531, '_task': 'basic_proce...
reverse
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x63 x26 x2 x30 x14 x60 x31 x57 x45 x23 x33 x54 x18 x50 x29 x43 x54 x60 x47 x31 x38 x4 x57 x32 x31 x16 x44 x42 x47 x58 x1 x32
x63 x26 x2 x30 x14 x60 x31 x57 x45 x23 x33 x54 x18 x50 x29 x43 x47 x38 x4 x32 x16 x44 x42 x58 x1
{'task': 'set', 'seq': ['x63', 'x26', 'x2', 'x30', 'x14', 'x60', 'x31', 'x57', 'x45', 'x23', 'x33', 'x54', 'x18', 'x50', 'x29', 'x43', 'x54', 'x60', 'x47', 'x31', 'x38', 'x4', 'x57', 'x32', 'x31', 'x16', 'x44', 'x42', 'x47', 'x58', 'x1', 'x32'], 'k': 4, 'n': 32, '_time': 0.000278472900390625, '_task': 'basic_procedural...
set
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x62; PUSH x48; PUSH x14; PUSH x7; PUSH x40; POP; PUSH x31; PUSH x7; PUSH x41; PUSH x33; PUSH x1; PUSH x44; PUSH x34; PUSH x10; POP; PUSH x11; PUSH x2; POP...
x12 x64 x11 x34 x44 x1 x33 x41 x7 x31 x7 x14 x48 x62
{'task': 'stack', 'seq': ['PUSH x62', 'PUSH x48', 'PUSH x14', 'PUSH x7', 'PUSH x40', 'POP', 'PUSH x31', 'PUSH x7', 'PUSH x41', 'PUSH x33', 'PUSH x1', 'PUSH x44', 'PUSH x34', 'PUSH x10', 'POP', 'PUSH x11', 'PUSH x2', 'POP', 'PUSH x13', 'PUSH x58', 'PUSH x3', 'PUSH x20', 'POP', 'POP', 'PUSH x57', 'POP', 'POP', 'PUSH x40'...
stack
instruct
0
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence.
o1 o2 c2 o3 o0 o0 o2 o2 o3 o0 o2 o1 o3 c3 o2 o1 c3 o0 o2 c3 c1 c1 c2 c1 c2 c0 c2 c0 c2 c2 c0 c0
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002982616424560547, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens':...
dyck_shuffle
instruct
0
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence.
o3 c3 o1 o1 o2 c1 o1 c1 c2 c1 o2 c2 o2 c2 o2 o3 c2 o0 o0 c0 o1 o0 o3 o0 o2 c1 c3 c0 c2 c3 c0 c0
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002703666687011719, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens':...
dyck_shuffle
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x51; PUSH x19; PUSH x28; PUSH x17; PUSH x12; PUSH x23; PUSH x47; PUSH x41; POP; POP; POP; PUSH x6; POP; POP; PUSH x14; POP; PUSH x34; POP; PUSH x10; PUSH ...
EMPTY
{'task': 'stack', 'seq': ['PUSH x51', 'PUSH x19', 'PUSH x28', 'PUSH x17', 'PUSH x12', 'PUSH x23', 'PUSH x47', 'PUSH x41', 'POP', 'POP', 'POP', 'PUSH x6', 'POP', 'POP', 'PUSH x14', 'POP', 'PUSH x34', 'POP', 'PUSH x10', 'PUSH x16', 'PUSH x48', 'POP', 'POP', 'POP', 'POP', 'POP', 'PUSH x53', 'POP', 'POP', 'POP', 'PUSH x6',...
stack
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x15; PUSH x7; PUSH x47; POP; POP; PUSH x62; POP; PUSH x10; PUSH x24; PUSH x36; PUSH x51; PUSH x46; PUSH x42; PUSH x64; PUSH x7; PUSH x27; PUSH x48; POP; P...
x40 x16 x27 x7 x64 x42 x46 x51 x36 x24 x10 x15
{'task': 'stack', 'seq': ['PUSH x15', 'PUSH x7', 'PUSH x47', 'POP', 'POP', 'PUSH x62', 'POP', 'PUSH x10', 'PUSH x24', 'PUSH x36', 'PUSH x51', 'PUSH x46', 'PUSH x42', 'PUSH x64', 'PUSH x7', 'PUSH x27', 'PUSH x48', 'POP', 'PUSH x16', 'PUSH x41', 'PUSH x59', 'PUSH x36', 'POP', 'PUSH x31', 'POP', 'PUSH x16', 'POP', 'POP', ...
stack
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x63; POP; PUSH x37; POP; PUSH x16; PUSH x43; PUSH x53; POP; PUSH x27; POP; PUSH x59; PUSH x11; PUSH x21; POP; POP; PUSH x62; PUSH x41; PUSH x38; PUSH x28;...
x44 x41 x62 x59 x43 x16
{'task': 'stack', 'seq': ['PUSH x63', 'POP', 'PUSH x37', 'POP', 'PUSH x16', 'PUSH x43', 'PUSH x53', 'POP', 'PUSH x27', 'POP', 'PUSH x59', 'PUSH x11', 'PUSH x21', 'POP', 'POP', 'PUSH x62', 'PUSH x41', 'PUSH x38', 'PUSH x28', 'PUSH x18', 'PUSH x53', 'POP', 'POP', 'POP', 'PUSH x45', 'PUSH x64', 'POP', 'POP', 'PUSH x1', 'P...
stack
instruct
0
Reverse the sequence. (SEQUENCE) x61 x21 x40 x58 x43 x12 x44 x3 x12 x59 x64 x26 x43 x28 x63 x24 x22 x38 x42 x60 x56 x55 x36 x30 x13 x20 x7 x45 x42 x11 x52 x28
x28 x52 x11 x42 x45 x7 x20 x13 x30 x36 x55 x56 x60 x42 x38 x22 x24 x63 x28 x43 x26 x64 x59 x12 x3 x44 x12 x43 x58 x40 x21 x61
{'task': 'reverse', 'seq': ['x61', 'x21', 'x40', 'x58', 'x43', 'x12', 'x44', 'x3', 'x12', 'x59', 'x64', 'x26', 'x43', 'x28', 'x63', 'x24', 'x22', 'x38', 'x42', 'x60', 'x56', 'x55', 'x36', 'x30', 'x13', 'x20', 'x7', 'x45', 'x42', 'x11', 'x52', 'x28'], 'k': 4, 'n': 32, '_time': 0.0002758502960205078, '_task': 'basic_proc...
reverse
instruct
0
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens. Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence.
o2 c2 o3 o2 o2 o1 o3 o0 o1 c1 c0 o0 c0 c3 c1 c2 c2 o0 c0 o0 o0 c0 c0 o1 o1 c1 o3 c3 o3 c3 c1 c3
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002548694610595703, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 39, '_answer_tokens': 64}
dyck
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x16 x56 x54 x8 x40 x46 x16 x13 x23 x46 x13 x29 x62 x45 x2 x38 x12 x54 x51 x54 x32 x32 x3 x56 x6 x10 x44 x54 x7 x47 x54 x7 (TARGET) x36
x16 x56 x54 x8 x40 x46 x16 x13 x23 x46 x13 x29 x62 x45 x2 x38 x12 x54 x51 x54 x32 x32 x3 x56 x6 x10 x44 x54 x7 x47 x54 x7
{'task': 'delete', 'seq': [['x16', 'x56', 'x54', 'x8', 'x40', 'x46', 'x16', 'x13', 'x23', 'x46', 'x13', 'x29', 'x62', 'x45', 'x2', 'x38', 'x12', 'x54', 'x51', 'x54', 'x32', 'x32', 'x3', 'x56', 'x6', 'x10', 'x44', 'x54', 'x7', 'x47', 'x54', 'x7'], 'x36'], 'k': 4, 'n': 32, '_time': 0.0003027915954589844, '_task': 'basic_...
delete
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x16 x7 x51 x4 x39 x19 x37 x8 x5 x26 x58 x36 x48 x21 x1 x7 x14 x31 x40 x10 x48 x40 x47 x28 x31 x13 x58 x28 x12 x42 x32 x28 (TARGET) x47
x16 x7 x51 x4 x39 x19 x37 x8 x5 x26 x58 x36 x48 x21 x1 x7 x14 x31 x40 x10 x48 x40 x28 x31 x13 x58 x28 x12 x42 x32 x28
{'task': 'delete', 'seq': [['x16', 'x7', 'x51', 'x4', 'x39', 'x19', 'x37', 'x8', 'x5', 'x26', 'x58', 'x36', 'x48', 'x21', 'x1', 'x7', 'x14', 'x31', 'x40', 'x10', 'x48', 'x40', 'x47', 'x28', 'x31', 'x13', 'x58', 'x28', 'x12', 'x42', 'x32', 'x28'], 'x47'], 'k': 4, 'n': 32, '_time': 0.0004584789276123047, '_task': 'basic_...
delete
instruct
0
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence.
o3 o2 c3 c2 o2 o2 c2 o3 c3 c2 o1 c1 o0 o1 o3 c1 c0 o2 o1 c3 c1 c2 o1 o0 o0 o3 c1 c0 o1 c3 c0 c1
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002994537353515625, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens':...
dyck_shuffle
instruct
0
Reverse the sequence. (SEQUENCE) x54 x59 x16 x29 x46 x8 x5 x5 x2 x6 x21 x26 x17 x19 x16 x26 x53 x18 x52 x8 x2 x25 x15 x51 x49 x10 x32 x10 x46 x21 x20 x6
x6 x20 x21 x46 x10 x32 x10 x49 x51 x15 x25 x2 x8 x52 x18 x53 x26 x16 x19 x17 x26 x21 x6 x2 x5 x5 x8 x46 x29 x16 x59 x54
{'task': 'reverse', 'seq': ['x54', 'x59', 'x16', 'x29', 'x46', 'x8', 'x5', 'x5', 'x2', 'x6', 'x21', 'x26', 'x17', 'x19', 'x16', 'x26', 'x53', 'x18', 'x52', 'x8', 'x2', 'x25', 'x15', 'x51', 'x49', 'x10', 'x32', 'x10', 'x46', 'x21', 'x20', 'x6'], 'k': 4, 'n': 32, '_time': 0.0002779960632324219, '_task': 'basic_procedural...
reverse
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x43; POP; PUSH x5; PUSH x14; POP; PUSH x29; PUSH x52; POP; PUSH x64; PUSH x56; PUSH x59; PUSH x13; PUSH x25; POP; PUSH x14; PUSH x49; POP; POP; PUSH x2; P...
x8 x2 x13 x59 x56 x64 x29 x5
{'task': 'stack', 'seq': ['PUSH x43', 'POP', 'PUSH x5', 'PUSH x14', 'POP', 'PUSH x29', 'PUSH x52', 'POP', 'PUSH x64', 'PUSH x56', 'PUSH x59', 'PUSH x13', 'PUSH x25', 'POP', 'PUSH x14', 'PUSH x49', 'POP', 'POP', 'PUSH x2', 'PUSH x46', 'PUSH x33', 'PUSH x16', 'POP', 'POP', 'PUSH x43', 'POP', 'POP', 'PUSH x53', 'POP', 'PU...
stack
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x23 x13 x57 x12 x48 x12 x54 x20 x38 x55 x55 x56 x62 x22 x61 x51 x34 x22 x10 x24 x29 x41 x19 x60 x50 x40 x30 x38 x13 x31 x62 x34
x10 x12 x12 x13 x13 x19 x20 x22 x22 x23 x24 x29 x30 x31 x34 x34 x38 x38 x40 x41 x48 x50 x51 x54 x55 x55 x56 x57 x60 x61 x62 x62
{'task': 'sort', 'seq': ['x23', 'x13', 'x57', 'x12', 'x48', 'x12', 'x54', 'x20', 'x38', 'x55', 'x55', 'x56', 'x62', 'x22', 'x61', 'x51', 'x34', 'x22', 'x10', 'x24', 'x29', 'x41', 'x19', 'x60', 'x50', 'x40', 'x30', 'x38', 'x13', 'x31', 'x62', 'x34'], 'k': 4, 'n': 32, '_time': 0.00043487548828125, '_task': 'basic_procedu...
sort
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x41 x23 x34 x49 x35 x19 x16 x63 x20 x51 x3 x49 x5 x26 x5 x15 x37 x61 x47 x34 x18 x42 x38 x13 x7 x3 x17 x1 x1 x55 x43 x10 (TARGET) x41
x23 x34 x49 x35 x19 x16 x63 x20 x51 x3 x49 x5 x26 x5 x15 x37 x61 x47 x34 x18 x42 x38 x13 x7 x3 x17 x1 x1 x55 x43 x10
{'task': 'delete', 'seq': [['x41', 'x23', 'x34', 'x49', 'x35', 'x19', 'x16', 'x63', 'x20', 'x51', 'x3', 'x49', 'x5', 'x26', 'x5', 'x15', 'x37', 'x61', 'x47', 'x34', 'x18', 'x42', 'x38', 'x13', 'x7', 'x3', 'x17', 'x1', 'x1', 'x55', 'x43', 'x10'], 'x41'], 'k': 4, 'n': 32, '_time': 0.00028896331787109375, '_task': 'basic_...
delete
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x8; POP; PUSH x63; PUSH x13; PUSH x18; PUSH x9; POP; PUSH x29; PUSH x10; PUSH x16; PUSH x25; POP; PUSH x6; PUSH x21; PUSH x18; PUSH x50; PUSH x35; PUSH x4...
x36 x18 x21 x6 x16 x10 x29 x18 x13 x63
{'task': 'stack', 'seq': ['PUSH x8', 'POP', 'PUSH x63', 'PUSH x13', 'PUSH x18', 'PUSH x9', 'POP', 'PUSH x29', 'PUSH x10', 'PUSH x16', 'PUSH x25', 'POP', 'PUSH x6', 'PUSH x21', 'PUSH x18', 'PUSH x50', 'PUSH x35', 'PUSH x41', 'PUSH x39', 'PUSH x16', 'POP', 'PUSH x9', 'POP', 'POP', 'POP', 'POP', 'PUSH x64', 'POP', 'PUSH x...
stack
instruct
0
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens. Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence.
o1 o2 c2 c1 o0 o1 o3 c3 o1 c1 c1 c0 o0 o0 c0 c0 o1 c1 o3 c3 o2 c2 o0 c0 o2 o1 c1 c2 o0 o3 c3 c0
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002551078796386719, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 39, '_answer_tokens': 64}
dyck
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x46 x33 x30 x51 x63 x38 x38 x28 x23 x11 x54 x16 x10 x34 x52 x10 x45 x2 x49 x57 x52 x61 x57 x52 x61 x19 x20 x58 x46 x36 x57 x10 (TARGET) x61
x46 x33 x30 x51 x63 x38 x38 x28 x23 x11 x54 x16 x10 x34 x52 x10 x45 x2 x49 x57 x52 x57 x52 x61 x19 x20 x58 x46 x36 x57 x10
{'task': 'delete', 'seq': [['x46', 'x33', 'x30', 'x51', 'x63', 'x38', 'x38', 'x28', 'x23', 'x11', 'x54', 'x16', 'x10', 'x34', 'x52', 'x10', 'x45', 'x2', 'x49', 'x57', 'x52', 'x61', 'x57', 'x52', 'x61', 'x19', 'x20', 'x58', 'x46', 'x36', 'x57', 'x10'], 'x61'], 'k': 4, 'n': 32, '_time': 0.0004336833953857422, '_task': 'b...
delete
instruct
0
Reverse the sequence. (SEQUENCE) x10 x42 x17 x31 x26 x21 x3 x23 x54 x24 x51 x3 x33 x6 x61 x49 x9 x9 x37 x3 x63 x16 x39 x10 x56 x56 x35 x39 x38 x46 x18 x15
x15 x18 x46 x38 x39 x35 x56 x56 x10 x39 x16 x63 x3 x37 x9 x9 x49 x61 x6 x33 x3 x51 x24 x54 x23 x3 x21 x26 x31 x17 x42 x10
{'task': 'reverse', 'seq': ['x10', 'x42', 'x17', 'x31', 'x26', 'x21', 'x3', 'x23', 'x54', 'x24', 'x51', 'x3', 'x33', 'x6', 'x61', 'x49', 'x9', 'x9', 'x37', 'x3', 'x63', 'x16', 'x39', 'x10', 'x56', 'x56', 'x35', 'x39', 'x38', 'x46', 'x18', 'x15'], 'k': 4, 'n': 32, '_time': 0.0002753734588623047, '_task': 'basic_procedur...
reverse
instruct
0
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens. Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence.
o0 o1 c1 o2 c2 c0 o3 c3 o1 c1 o2 o1 o2 o2 c2 c2 o1 o2 o1 o2 o0 c0 o2 c2 c2 c1 o1 c1 c2 c1 c1 c2
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002551078796386719, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 39, '_answer_tokens': 64}
dyck
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x21 x50 x36 x60 x28 x58 x32 x41 x38 x20 x39 x27 x40 x8 x12 x10 x52 x22 x41 x61 x41 x48 x1 x23 x42 x51 x47 x11 x25 x35 x22 x23
x1 x8 x10 x11 x12 x20 x21 x22 x22 x23 x23 x25 x27 x28 x32 x35 x36 x38 x39 x40 x41 x41 x41 x42 x47 x48 x50 x51 x52 x58 x60 x61
{'task': 'sort', 'seq': ['x21', 'x50', 'x36', 'x60', 'x28', 'x58', 'x32', 'x41', 'x38', 'x20', 'x39', 'x27', 'x40', 'x8', 'x12', 'x10', 'x52', 'x22', 'x41', 'x61', 'x41', 'x48', 'x1', 'x23', 'x42', 'x51', 'x47', 'x11', 'x25', 'x35', 'x22', 'x23'], 'k': 4, 'n': 32, '_time': 0.00028777122497558594, '_task': 'basic_proced...
sort
instruct
0
Reverse the sequence. (SEQUENCE) x9 x2 x48 x33 x43 x22 x52 x16 x60 x25 x42 x10 x62 x13 x6 x10 x5 x44 x31 x9 x35 x23 x31 x32 x1 x24 x48 x45 x2 x38 x64 x22
x22 x64 x38 x2 x45 x48 x24 x1 x32 x31 x23 x35 x9 x31 x44 x5 x10 x6 x13 x62 x10 x42 x25 x60 x16 x52 x22 x43 x33 x48 x2 x9
{'task': 'reverse', 'seq': ['x9', 'x2', 'x48', 'x33', 'x43', 'x22', 'x52', 'x16', 'x60', 'x25', 'x42', 'x10', 'x62', 'x13', 'x6', 'x10', 'x5', 'x44', 'x31', 'x9', 'x35', 'x23', 'x31', 'x32', 'x1', 'x24', 'x48', 'x45', 'x2', 'x38', 'x64', 'x22'], 'k': 4, 'n': 32, '_time': 0.0002465248107910156, '_task': 'basic_procedura...
reverse
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x28 x25 x10 x16 x46 x61 x27 x62 x58 x5 x27 x30 x37 x16 x8 x60 x34 x8 x40 x7 x17 x26 x30 x21 x2 x63 x4 x24 x22 x30 x31 x34 (TARGET) x8
x28 x25 x10 x16 x46 x61 x27 x62 x58 x5 x27 x30 x37 x16 x60 x34 x8 x40 x7 x17 x26 x30 x21 x2 x63 x4 x24 x22 x30 x31 x34
{'task': 'delete', 'seq': [['x28', 'x25', 'x10', 'x16', 'x46', 'x61', 'x27', 'x62', 'x58', 'x5', 'x27', 'x30', 'x37', 'x16', 'x8', 'x60', 'x34', 'x8', 'x40', 'x7', 'x17', 'x26', 'x30', 'x21', 'x2', 'x63', 'x4', 'x24', 'x22', 'x30', 'x31', 'x34'], 'x8'], 'k': 4, 'n': 32, '_time': 0.00030541419982910156, '_task': 'basic_...
delete
instruct
0
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens. Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence.
o2 c2 o2 o3 c3 o1 o0 c0 c1 c2 o3 c3 o2 o0 o0 c0 c0 o3 c3 o2 c2 c2 o0 c0 o3 c3 o3 c3 o0 c0 o2 c2
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00038504600524902344, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 39, '_answer_tokens': 64}
dyck
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x55 x37 x28 x13 x64 x10 x21 x20 x25 x40 x8 x16 x49 x16 x5 x17 x4 x24 x14 x22 x36 x38 x58 x32 x9 x41 x56 x32 x16 x11 x10 x31
x4 x5 x8 x9 x10 x10 x11 x13 x14 x16 x16 x16 x17 x20 x21 x22 x24 x25 x28 x31 x32 x32 x36 x37 x38 x40 x41 x49 x55 x56 x58 x64
{'task': 'sort', 'seq': ['x55', 'x37', 'x28', 'x13', 'x64', 'x10', 'x21', 'x20', 'x25', 'x40', 'x8', 'x16', 'x49', 'x16', 'x5', 'x17', 'x4', 'x24', 'x14', 'x22', 'x36', 'x38', 'x58', 'x32', 'x9', 'x41', 'x56', 'x32', 'x16', 'x11', 'x10', 'x31'], 'k': 4, 'n': 32, '_time': 0.0002884864807128906, '_task': 'basic_procedura...
sort
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x4 x6 x61 x1 x47 x50 x63 x61 x19 x38 x7 x12 x42 x7 x17 x22 x63 x47 x43 x39 x59 x8 x59 x51 x40 x38 x1 x32 x14 x9 x1 x32
x1 x1 x1 x4 x6 x7 x7 x8 x9 x12 x14 x17 x19 x22 x32 x32 x38 x38 x39 x40 x42 x43 x47 x47 x50 x51 x59 x59 x61 x61 x63 x63
{'task': 'sort', 'seq': ['x4', 'x6', 'x61', 'x1', 'x47', 'x50', 'x63', 'x61', 'x19', 'x38', 'x7', 'x12', 'x42', 'x7', 'x17', 'x22', 'x63', 'x47', 'x43', 'x39', 'x59', 'x8', 'x59', 'x51', 'x40', 'x38', 'x1', 'x32', 'x14', 'x9', 'x1', 'x32'], 'k': 4, 'n': 32, '_time': 0.0002875328063964844, '_task': 'basic_procedural', '...
sort
instruct
0
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence.
o1 o1 c1 o1 o1 o1 o0 o0 o1 o1 c1 c0 c0 c1 o1 o2 o3 c1 o1 c1 c1 c2 c1 o2 c1 o1 o3 c2 c3 c1 c3 c1
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002994537353515625, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens':...
dyck_shuffle
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x51; POP; PUSH x63; PUSH x35; PUSH x55; POP; PUSH x36; PUSH x25; PUSH x45; PUSH x9; POP; POP; PUSH x56; PUSH x48; PUSH x60; PUSH x47; PUSH x2; POP; PUSH x...
x51 x42 x55 x32 x48 x56 x25 x36 x35 x63
{'task': 'stack', 'seq': ['PUSH x51', 'POP', 'PUSH x63', 'PUSH x35', 'PUSH x55', 'POP', 'PUSH x36', 'PUSH x25', 'PUSH x45', 'PUSH x9', 'POP', 'POP', 'PUSH x56', 'PUSH x48', 'PUSH x60', 'PUSH x47', 'PUSH x2', 'POP', 'PUSH x4', 'PUSH x51', 'POP', 'PUSH x28', 'POP', 'PUSH x48', 'POP', 'POP', 'POP', 'POP', 'PUSH x32', 'PUS...
stack
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x62; PUSH x24; PUSH x38; PUSH x4; PUSH x35; PUSH x28; PUSH x64; PUSH x4; PUSH x41; POP; PUSH x62; POP; POP; PUSH x20; PUSH x43; PUSH x5; PUSH x15; PUSH x3...
x28 x35 x4 x38 x24 x62
{'task': 'stack', 'seq': ['PUSH x62', 'PUSH x24', 'PUSH x38', 'PUSH x4', 'PUSH x35', 'PUSH x28', 'PUSH x64', 'PUSH x4', 'PUSH x41', 'POP', 'PUSH x62', 'POP', 'POP', 'PUSH x20', 'PUSH x43', 'PUSH x5', 'PUSH x15', 'PUSH x37', 'POP', 'POP', 'PUSH x1', 'POP', 'POP', 'POP', 'POP', 'PUSH x5', 'POP', 'PUSH x49', 'PUSH x27', '...
stack
instruct
0
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B. (A) x4 x19 x2 x61 x38 x45 x44 x13 x54 x32 x8 x7 x1 x11 x5 x52 (B) x36 x5 x46 x43 x3 x20 x5 x40 x8 x29 x27 x44 x24 x58 x43 x64
x4 x19 x2 x61 x38 x45 x44 x13 x54 x32 x8 x7 x1 x11 x5 x52 x36 x46 x43 x3 x20 x40 x29 x27 x24 x58 x64
{'task': 'union', 'seq': [['x4', 'x19', 'x2', 'x61', 'x38', 'x45', 'x44', 'x13', 'x54', 'x32', 'x8', 'x7', 'x1', 'x11', 'x5', 'x52'], ['x36', 'x5', 'x46', 'x43', 'x3', 'x20', 'x5', 'x40', 'x8', 'x29', 'x27', 'x44', 'x24', 'x58', 'x43', 'x64']], 'k': 4, 'n': 32, '_time': 0.00029730796813964844, '_task': 'basic_procedura...
union
instruct
0
Copy the sequence exactly. (SEQUENCE) x29 x6 x22 x47 x35 x23 x39 x55 x61 x10 x18 x39 x13 x35 x22 x52 x4 x15 x27 x1 x38 x55 x49 x6 x10 x16 x53 x17 x38 x19 x17 x9
x29 x6 x22 x47 x35 x23 x39 x55 x61 x10 x18 x39 x13 x35 x22 x52 x4 x15 x27 x1 x38 x55 x49 x6 x10 x16 x53 x17 x38 x19 x17 x9
{'task': 'identity', 'seq': ['x29', 'x6', 'x22', 'x47', 'x35', 'x23', 'x39', 'x55', 'x61', 'x10', 'x18', 'x39', 'x13', 'x35', 'x22', 'x52', 'x4', 'x15', 'x27', 'x1', 'x38', 'x55', 'x49', 'x6', 'x10', 'x16', 'x53', 'x17', 'x38', 'x19', 'x17', 'x9'], 'k': 4, 'n': 32, '_time': 0.00028014183044433594, '_task': 'basic_proce...
identity
instruct
0
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B. (A) x26 x10 x21 x25 x60 x38 x11 x56 x27 x52 x55 x54 x20 x44 x34 x59 (B) x41 x59 x55 x24 x59 x26 x11 x61 x56 x48 x22 x51 x10 x1 x25 x27
x26 x10 x21 x25 x60 x38 x11 x56 x27 x52 x55 x54 x20 x44 x34 x59 x41 x24 x61 x48 x22 x51 x1
{'task': 'union', 'seq': [['x26', 'x10', 'x21', 'x25', 'x60', 'x38', 'x11', 'x56', 'x27', 'x52', 'x55', 'x54', 'x20', 'x44', 'x34', 'x59'], ['x41', 'x59', 'x55', 'x24', 'x59', 'x26', 'x11', 'x61', 'x56', 'x48', 'x22', 'x51', 'x10', 'x1', 'x25', 'x27']], 'k': 4, 'n': 32, '_time': 0.0003216266632080078, '_task': 'basic_p...
union
instruct
0
Reverse the sequence. (SEQUENCE) x20 x1 x8 x47 x26 x51 x26 x44 x11 x49 x52 x1 x32 x2 x39 x59 x39 x3 x17 x1 x27 x38 x22 x25 x28 x6 x7 x32 x27 x58 x19 x19
x19 x19 x58 x27 x32 x7 x6 x28 x25 x22 x38 x27 x1 x17 x3 x39 x59 x39 x2 x32 x1 x52 x49 x11 x44 x26 x51 x26 x47 x8 x1 x20
{'task': 'reverse', 'seq': ['x20', 'x1', 'x8', 'x47', 'x26', 'x51', 'x26', 'x44', 'x11', 'x49', 'x52', 'x1', 'x32', 'x2', 'x39', 'x59', 'x39', 'x3', 'x17', 'x1', 'x27', 'x38', 'x22', 'x25', 'x28', 'x6', 'x7', 'x32', 'x27', 'x58', 'x19', 'x19'], 'k': 4, 'n': 32, '_time': 0.0002722740173339844, '_task': 'basic_procedural...
reverse
instruct
0
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens. Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence.
o2 o0 c0 c2 o2 o0 o3 c3 c0 c2 o3 o3 c3 c3 o0 o3 c3 c0 o3 o3 c3 c3 o2 o3 c3 c2 o0 o2 c2 c0 o3 c3
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00038242340087890625, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 39, '_answer_tokens': 64}
dyck
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x54 x11 x51 x48 x60 x36 x5 x41 x12 x26 x51 x58 x32 x59 x28 x29 x16 x5 x1 x13 x27 x5 x15 x35 x4 x26 x58 x12 x55 x57 x58 x48
x54 x11 x51 x48 x60 x36 x5 x41 x12 x26 x58 x32 x59 x28 x29 x16 x1 x13 x27 x15 x35 x4 x55 x57
{'task': 'set', 'seq': ['x54', 'x11', 'x51', 'x48', 'x60', 'x36', 'x5', 'x41', 'x12', 'x26', 'x51', 'x58', 'x32', 'x59', 'x28', 'x29', 'x16', 'x5', 'x1', 'x13', 'x27', 'x5', 'x15', 'x35', 'x4', 'x26', 'x58', 'x12', 'x55', 'x57', 'x58', 'x48'], 'k': 4, 'n': 32, '_time': 0.0002758502960205078, '_task': 'basic_procedural'...
set
instruct
0
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B. (A) x62 x44 x38 x5 x61 x32 x53 x32 x13 x20 x17 x34 x40 x60 x45 x10 (B) x33 x11 x61 x21 x22 x50 x45 x31 x31 x35 x22 x52 x21 x1 x31 x54
x62 x44 x38 x5 x61 x32 x53 x13 x20 x17 x34 x40 x60 x45 x10 x33 x11 x21 x22 x50 x31 x35 x52 x1 x54
{'task': 'union', 'seq': [['x62', 'x44', 'x38', 'x5', 'x61', 'x32', 'x53', 'x32', 'x13', 'x20', 'x17', 'x34', 'x40', 'x60', 'x45', 'x10'], ['x33', 'x11', 'x61', 'x21', 'x22', 'x50', 'x45', 'x31', 'x31', 'x35', 'x22', 'x52', 'x21', 'x1', 'x31', 'x54']], 'k': 4, 'n': 32, '_time': 0.0002949237823486328, '_task': 'basic_pr...
union
instruct
0
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens. Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence.
o2 c2 o2 o3 c3 o2 c2 o0 c0 o1 o1 o3 c3 o2 c2 c1 o2 c2 o0 c0 o1 o3 c3 o3 o2 o2 c2 c2 c3 c1 c1 c2
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003840923309326172, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 39, '_answer_tokens': 64}
dyck
instruct
0
Reverse the sequence. (SEQUENCE) x19 x51 x5 x38 x27 x59 x40 x16 x21 x15 x28 x42 x22 x43 x32 x11 x41 x8 x22 x40 x64 x2 x15 x51 x49 x5 x36 x40 x9 x61 x11 x56
x56 x11 x61 x9 x40 x36 x5 x49 x51 x15 x2 x64 x40 x22 x8 x41 x11 x32 x43 x22 x42 x28 x15 x21 x16 x40 x59 x27 x38 x5 x51 x19
{'task': 'reverse', 'seq': ['x19', 'x51', 'x5', 'x38', 'x27', 'x59', 'x40', 'x16', 'x21', 'x15', 'x28', 'x42', 'x22', 'x43', 'x32', 'x11', 'x41', 'x8', 'x22', 'x40', 'x64', 'x2', 'x15', 'x51', 'x49', 'x5', 'x36', 'x40', 'x9', 'x61', 'x11', 'x56'], 'k': 4, 'n': 32, '_time': 0.0002999305725097656, '_task': 'basic_procedu...
reverse
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x62; PUSH x52; PUSH x64; PUSH x21; POP; POP; PUSH x48; PUSH x64; POP; PUSH x27; PUSH x31; PUSH x29; PUSH x53; PUSH x47; PUSH x37; PUSH x29; PUSH x31; POP;...
x29 x31 x27 x48 x52 x62
{'task': 'stack', 'seq': ['PUSH x62', 'PUSH x52', 'PUSH x64', 'PUSH x21', 'POP', 'POP', 'PUSH x48', 'PUSH x64', 'POP', 'PUSH x27', 'PUSH x31', 'PUSH x29', 'PUSH x53', 'PUSH x47', 'PUSH x37', 'PUSH x29', 'PUSH x31', 'POP', 'PUSH x40', 'POP', 'PUSH x13', 'PUSH x64', 'PUSH x18', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', '...
stack
instruct
0
Copy the sequence exactly. (SEQUENCE) x2 x11 x38 x53 x61 x39 x4 x2 x10 x46 x41 x58 x52 x40 x18 x15 x11 x10 x62 x32 x34 x44 x62 x64 x63 x45 x17 x23 x2 x6 x14 x46
x2 x11 x38 x53 x61 x39 x4 x2 x10 x46 x41 x58 x52 x40 x18 x15 x11 x10 x62 x32 x34 x44 x62 x64 x63 x45 x17 x23 x2 x6 x14 x46
{'task': 'identity', 'seq': ['x2', 'x11', 'x38', 'x53', 'x61', 'x39', 'x4', 'x2', 'x10', 'x46', 'x41', 'x58', 'x52', 'x40', 'x18', 'x15', 'x11', 'x10', 'x62', 'x32', 'x34', 'x44', 'x62', 'x64', 'x63', 'x45', 'x17', 'x23', 'x2', 'x6', 'x14', 'x46'], 'k': 4, 'n': 32, '_time': 0.00027060508728027344, '_task': 'basic_proce...
identity
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x54 x12 x51 x29 x44 x18 x55 x15 x32 x5 x48 x44 x20 x26 x42 x40 x27 x17 x38 x38 x17 x9 x32 x36 x5 x56 x56 x25 x56 x26 x64 x9
x5 x5 x9 x9 x12 x15 x17 x17 x18 x20 x25 x26 x26 x27 x29 x32 x32 x36 x38 x38 x40 x42 x44 x44 x48 x51 x54 x55 x56 x56 x56 x64
{'task': 'sort', 'seq': ['x54', 'x12', 'x51', 'x29', 'x44', 'x18', 'x55', 'x15', 'x32', 'x5', 'x48', 'x44', 'x20', 'x26', 'x42', 'x40', 'x27', 'x17', 'x38', 'x38', 'x17', 'x9', 'x32', 'x36', 'x5', 'x56', 'x56', 'x25', 'x56', 'x26', 'x64', 'x9'], 'k': 4, 'n': 32, '_time': 0.0003135204315185547, '_task': 'basic_procedura...
sort
instruct
0
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B. (A) x46 x29 x49 x43 x53 x30 x55 x8 x44 x60 x49 x32 x36 x59 x1 x8 (B) x49 x26 x36 x53 x55 x37 x46 x56 x60 x62 x27 x30 x27 x21 x27 x30
x46 x29 x49 x43 x53 x30 x55 x8 x44 x60 x32 x36 x59 x1 x26 x37 x56 x62 x27 x21
{'task': 'union', 'seq': [['x46', 'x29', 'x49', 'x43', 'x53', 'x30', 'x55', 'x8', 'x44', 'x60', 'x49', 'x32', 'x36', 'x59', 'x1', 'x8'], ['x49', 'x26', 'x36', 'x53', 'x55', 'x37', 'x46', 'x56', 'x60', 'x62', 'x27', 'x30', 'x27', 'x21', 'x27', 'x30']], 'k': 4, 'n': 32, '_time': 0.0004417896270751953, '_task': 'basic_pro...
union
instruct
0
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence.
o3 c3 o2 c2 o2 o2 c2 c2 o1 o1 o2 c1 o1 c2 c1 o2 o2 c2 c2 c1 o3 o2 c3 c2 o2 o0 o2 o3 c3 c2 c2 c0
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002987384796142578, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens':...
dyck_shuffle
instruct
0
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B. (A) x23 x25 x24 x11 x53 x47 x56 x62 x5 x5 x39 x52 x15 x22 x54 x21 (B) x4 x60 x46 x16 x60 x17 x45 x61 x23 x27 x1 x25 x24 x34 x31 x48
x23 x25 x24 x11 x53 x47 x56 x62 x5 x39 x52 x15 x22 x54 x21 x4 x60 x46 x16 x17 x45 x61 x27 x1 x34 x31 x48
{'task': 'union', 'seq': [['x23', 'x25', 'x24', 'x11', 'x53', 'x47', 'x56', 'x62', 'x5', 'x5', 'x39', 'x52', 'x15', 'x22', 'x54', 'x21'], ['x4', 'x60', 'x46', 'x16', 'x60', 'x17', 'x45', 'x61', 'x23', 'x27', 'x1', 'x25', 'x24', 'x34', 'x31', 'x48']], 'k': 4, 'n': 32, '_time': 0.0002968311309814453, '_task': 'basic_proc...
union
instruct
0
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence.
o2 o1 o3 o3 c3 c3 o2 c2 o2 c2 c2 c1 o1 c1 o1 o2 c2 c1 o2 c2 o0 o3 c3 c0 o1 c1 o2 o3 c2 o1 c1 c3
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0004506111145019531, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens':...
dyck_shuffle
instruct
0
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty. (OPERATIONS) PUSH x48; POP; PUSH x46; POP; PUSH x2; PUSH x52; PUSH x31; PUSH x32; PUSH x23; PUSH x53; PUSH x12; PUSH x30; POP; POP; POP; PUSH x4; POP; POP; PUSH x40; POP; P...
x52 x2
{'task': 'stack', 'seq': ['PUSH x48', 'POP', 'PUSH x46', 'POP', 'PUSH x2', 'PUSH x52', 'PUSH x31', 'PUSH x32', 'PUSH x23', 'PUSH x53', 'PUSH x12', 'PUSH x30', 'POP', 'POP', 'POP', 'PUSH x4', 'POP', 'POP', 'PUSH x40', 'POP', 'PUSH x17', 'POP', 'POP', 'PUSH x17', 'POP', 'PUSH x62', 'POP', 'POP', 'PUSH x49', 'POP', 'PUSH ...
stack
instruct
0
Copy the sequence exactly. (SEQUENCE) x19 x30 x31 x42 x27 x23 x6 x15 x21 x14 x27 x26 x54 x22 x35 x48 x57 x31 x58 x61 x31 x63 x20 x51 x28 x12 x19 x11 x12 x24 x28 x9
x19 x30 x31 x42 x27 x23 x6 x15 x21 x14 x27 x26 x54 x22 x35 x48 x57 x31 x58 x61 x31 x63 x20 x51 x28 x12 x19 x11 x12 x24 x28 x9
{'task': 'identity', 'seq': ['x19', 'x30', 'x31', 'x42', 'x27', 'x23', 'x6', 'x15', 'x21', 'x14', 'x27', 'x26', 'x54', 'x22', 'x35', 'x48', 'x57', 'x31', 'x58', 'x61', 'x31', 'x63', 'x20', 'x51', 'x28', 'x12', 'x19', 'x11', 'x12', 'x24', 'x28', 'x9'], 'k': 4, 'n': 32, '_time': 0.0002734661102294922, '_task': 'basic_pro...
identity
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x51 x15 x7 x14 x13 x37 x6 x18 x25 x15 x41 x37 x62 x21 x37 x54 x59 x33 x18 x25 x54 x32 x62 x7 x30 x51 x44 x6 x13 x21 x22 x22
x51 x15 x7 x14 x13 x37 x6 x18 x25 x41 x62 x21 x54 x59 x33 x32 x30 x44 x22
{'task': 'set', 'seq': ['x51', 'x15', 'x7', 'x14', 'x13', 'x37', 'x6', 'x18', 'x25', 'x15', 'x41', 'x37', 'x62', 'x21', 'x37', 'x54', 'x59', 'x33', 'x18', 'x25', 'x54', 'x32', 'x62', 'x7', 'x30', 'x51', 'x44', 'x6', 'x13', 'x21', 'x22', 'x22'], 'k': 4, 'n': 32, '_time': 0.0002703666687011719, '_task': 'basic_procedural...
set
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x40 x36 x10 x4 x58 x35 x14 x6 x59 x37 x45 x12 x36 x12 x56 x54 x16 x15 x32 x25 x30 x52 x8 x1 x24 x2 x61 x58 x18 x38 x58 x43
x40 x36 x10 x4 x58 x35 x14 x6 x59 x37 x45 x12 x56 x54 x16 x15 x32 x25 x30 x52 x8 x1 x24 x2 x61 x18 x38 x43
{'task': 'set', 'seq': ['x40', 'x36', 'x10', 'x4', 'x58', 'x35', 'x14', 'x6', 'x59', 'x37', 'x45', 'x12', 'x36', 'x12', 'x56', 'x54', 'x16', 'x15', 'x32', 'x25', 'x30', 'x52', 'x8', 'x1', 'x24', 'x2', 'x61', 'x58', 'x18', 'x38', 'x58', 'x43'], 'k': 4, 'n': 32, '_time': 0.0004296302795410156, '_task': 'basic_procedural'...
set
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x19 x54 x7 x33 x40 x19 x53 x32 x36 x10 x53 x5 x21 x20 x46 x31 x44 x7 x13 x58 x34 x24 x30 x58 x26 x56 x13 x45 x28 x49 x37 x6 (TARGET) x15
x19 x54 x7 x33 x40 x19 x53 x32 x36 x10 x53 x5 x21 x20 x46 x31 x44 x7 x13 x58 x34 x24 x30 x58 x26 x56 x13 x45 x28 x49 x37 x6
{'task': 'delete', 'seq': [['x19', 'x54', 'x7', 'x33', 'x40', 'x19', 'x53', 'x32', 'x36', 'x10', 'x53', 'x5', 'x21', 'x20', 'x46', 'x31', 'x44', 'x7', 'x13', 'x58', 'x34', 'x24', 'x30', 'x58', 'x26', 'x56', 'x13', 'x45', 'x28', 'x49', 'x37', 'x6'], 'x15'], 'k': 4, 'n': 32, '_time': 0.000331878662109375, '_task': 'basic...
delete
instruct
0
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens. Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence.
o2 o0 o2 o2 c2 c2 o0 o1 o3 c3 o1 o2 c2 c1 o0 c0 o0 o3 c3 o0 c0 c0 o0 c0 o3 o1 c1 c3 c1 c0 c0 c2
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00023031234741210938, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 39, '_answer_tokens': 64}
dyck
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x55 x10 x31 x3 x24 x62 x27 x22 x44 x55 x1 x7 x32 x35 x35 x41 x34 x44 x33 x3 x29 x54 x30 x19 x4 x23 x12 x29 x57 x53 x33 x35
x55 x10 x31 x3 x24 x62 x27 x22 x44 x1 x7 x32 x35 x41 x34 x33 x29 x54 x30 x19 x4 x23 x12 x57 x53
{'task': 'set', 'seq': ['x55', 'x10', 'x31', 'x3', 'x24', 'x62', 'x27', 'x22', 'x44', 'x55', 'x1', 'x7', 'x32', 'x35', 'x35', 'x41', 'x34', 'x44', 'x33', 'x3', 'x29', 'x54', 'x30', 'x19', 'x4', 'x23', 'x12', 'x29', 'x57', 'x53', 'x33', 'x35'], 'k': 4, 'n': 32, '_time': 0.0002772808074951172, '_task': 'basic_procedural'...
set
instruct
0
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B. (A) x15 x34 x46 x42 x16 x12 x36 x18 x38 x29 x27 x39 x33 x26 x19 x8 (B) x20 x15 x50 x55 x45 x44 x7 x40 x28 x27 x54 x54 x21 x46 x63 x2
x15 x34 x46 x42 x16 x12 x36 x18 x38 x29 x27 x39 x33 x26 x19 x8 x20 x50 x55 x45 x44 x7 x40 x28 x54 x21 x63 x2
{'task': 'union', 'seq': [['x15', 'x34', 'x46', 'x42', 'x16', 'x12', 'x36', 'x18', 'x38', 'x29', 'x27', 'x39', 'x33', 'x26', 'x19', 'x8'], ['x20', 'x15', 'x50', 'x55', 'x45', 'x44', 'x7', 'x40', 'x28', 'x27', 'x54', 'x54', 'x21', 'x46', 'x63', 'x2']], 'k': 4, 'n': 32, '_time': 0.00045228004455566406, '_task': 'basic_pr...
union
instruct
0
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens. Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence.
o3 c3 o1 c1 o3 o3 o2 o3 c3 c2 o0 o2 o1 c1 o0 o2 o0 c0 c2 o1 c1 c0 o3 c3 o1 o3 c3 c1 c2 c0 c3 c3
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002532005310058594, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 39, '_answer_tokens': 64}
dyck
instruct
0
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B. (A) x42 x25 x42 x22 x20 x15 x62 x24 x17 x59 x2 x1 x47 x52 x13 x40 (B) x10 x25 x18 x14 x50 x26 x62 x18 x15 x23 x52 x53 x1 x37 x2 x35
x42 x25 x22 x20 x15 x62 x24 x17 x59 x2 x1 x47 x52 x13 x40 x10 x18 x14 x50 x26 x23 x53 x37 x35
{'task': 'union', 'seq': [['x42', 'x25', 'x42', 'x22', 'x20', 'x15', 'x62', 'x24', 'x17', 'x59', 'x2', 'x1', 'x47', 'x52', 'x13', 'x40'], ['x10', 'x25', 'x18', 'x14', 'x50', 'x26', 'x62', 'x18', 'x15', 'x23', 'x52', 'x53', 'x1', 'x37', 'x2', 'x35']], 'k': 4, 'n': 32, '_time': 0.000324249267578125, '_task': 'basic_proce...
union
instruct
0
Reverse the sequence. (SEQUENCE) x22 x9 x3 x1 x41 x29 x6 x64 x12 x33 x46 x18 x62 x3 x47 x22 x7 x5 x41 x6 x9 x30 x15 x28 x41 x51 x29 x30 x9 x62 x7 x22
x22 x7 x62 x9 x30 x29 x51 x41 x28 x15 x30 x9 x6 x41 x5 x7 x22 x47 x3 x62 x18 x46 x33 x12 x64 x6 x29 x41 x1 x3 x9 x22
{'task': 'reverse', 'seq': ['x22', 'x9', 'x3', 'x1', 'x41', 'x29', 'x6', 'x64', 'x12', 'x33', 'x46', 'x18', 'x62', 'x3', 'x47', 'x22', 'x7', 'x5', 'x41', 'x6', 'x9', 'x30', 'x15', 'x28', 'x41', 'x51', 'x29', 'x30', 'x9', 'x62', 'x7', 'x22'], 'k': 4, 'n': 32, '_time': 0.00027251243591308594, '_task': 'basic_procedural',...
reverse
instruct
0