prompt
stringlengths
144
465
answer
stringlengths
5
127
metadata
stringlengths
308
686
task
stringclasses
9 values
mode
stringclasses
1 value
level
int64
0
0
Reverse the sequence. (SEQUENCE) x27 x58 x34 x47 x3 x15 x48 x24 x42 x55 x49 x3 x4 x24 x18 x51 x16 x37 x12 x3 x39 x3 x10 x15 x35 x61 x5 x61 x53 x36 x48 x53
x53 x48 x36 x53 x61 x5 x61 x35 x15 x10 x3 x39 x3 x12 x37 x16 x51 x18 x24 x4 x3 x49 x55 x42 x24 x48 x15 x3 x47 x34 x58 x27
{'task': 'reverse', 'seq': ['x27', 'x58', 'x34', 'x47', 'x3', 'x15', 'x48', 'x24', 'x42', 'x55', 'x49', 'x3', 'x4', 'x24', 'x18', 'x51', 'x16', 'x37', 'x12', 'x3', 'x39', 'x3', 'x10', 'x15', 'x35', 'x61', 'x5', 'x61', 'x53', 'x36', 'x48', 'x53'], 'k': 4, 'n': 32, '_time': 0.00027823448181152344, '_task': 'basic_procedu...
reverse
instruct
0
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B. (A) x30 x22 x9 x64 x4 x50 x52 x54 x48 x40 x60 x61 x5 x27 x23 x45 (B) x43 x56 x24 x32 x7 x34 x60 x2 x64 x9 x53 x62 x51 x23 x37 x20
x30 x22 x9 x64 x4 x50 x52 x54 x48 x40 x60 x61 x5 x27 x23 x45 x43 x56 x24 x32 x7 x34 x2 x53 x62 x51 x37 x20
{'task': 'union', 'seq': [['x30', 'x22', 'x9', 'x64', 'x4', 'x50', 'x52', 'x54', 'x48', 'x40', 'x60', 'x61', 'x5', 'x27', 'x23', 'x45'], ['x43', 'x56', 'x24', 'x32', 'x7', 'x34', 'x60', 'x2', 'x64', 'x9', 'x53', 'x62', 'x51', 'x23', 'x37', 'x20']], 'k': 4, 'n': 32, '_time': 0.0004513263702392578, '_task': 'basic_proced...
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 x47; PUSH x4; PUSH x16; POP; POP; PUSH x42; PUSH x4; PUSH x4; PUSH x56; PUSH x9; POP; PUSH x46; POP; PUSH x23; PUSH x55; PUSH x21; POP; PUSH x30; PUSH x25...
x4 x4 x42 x47
{'task': 'stack', 'seq': ['PUSH x47', 'PUSH x4', 'PUSH x16', 'POP', 'POP', 'PUSH x42', 'PUSH x4', 'PUSH x4', 'PUSH x56', 'PUSH x9', 'POP', 'PUSH x46', 'POP', 'PUSH x23', 'PUSH x55', 'PUSH x21', 'POP', 'PUSH x30', 'PUSH x25', 'PUSH x15', 'PUSH x35', 'PUSH x50', 'POP', 'POP', 'PUSH x6', 'POP', 'POP', 'POP', '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 x32; PUSH x30; POP; PUSH x44; PUSH x33; PUSH x30; PUSH x53; PUSH x41; POP; PUSH x52; PUSH x11; POP; POP; PUSH x15; PUSH x27; PUSH x37; PUSH x6; PUSH x8; P...
x30 x33 x44 x32
{'task': 'stack', 'seq': ['PUSH x32', 'PUSH x30', 'POP', 'PUSH x44', 'PUSH x33', 'PUSH x30', 'PUSH x53', 'PUSH x41', 'POP', 'PUSH x52', 'PUSH x11', 'POP', 'POP', 'PUSH x15', 'PUSH x27', 'PUSH x37', 'PUSH x6', 'PUSH x8', 'PUSH x3', 'POP', 'PUSH x5', 'PUSH x11', 'PUSH x58', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP'...
stack
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x62 x43 x32 x54 x17 x15 x44 x34 x15 x5 x61 x51 x57 x23 x10 x46 x24 x30 x10 x25 x41 x13 x38 x7 x41 x40 x27 x44 x23 x30 x49 x64 (TARGET) x10
x62 x43 x32 x54 x17 x15 x44 x34 x15 x5 x61 x51 x57 x23 x46 x24 x30 x10 x25 x41 x13 x38 x7 x41 x40 x27 x44 x23 x30 x49 x64
{'task': 'delete', 'seq': [['x62', 'x43', 'x32', 'x54', 'x17', 'x15', 'x44', 'x34', 'x15', 'x5', 'x61', 'x51', 'x57', 'x23', 'x10', 'x46', 'x24', 'x30', 'x10', 'x25', 'x41', 'x13', 'x38', 'x7', 'x41', 'x40', 'x27', 'x44', 'x23', 'x30', 'x49', 'x64'], 'x10'], 'k': 4, 'n': 32, '_time': 0.0002880096435546875, '_task': 'ba...
delete
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x51 x35 x30 x33 x58 x56 x19 x31 x51 x57 x44 x11 x27 x5 x23 x45 x39 x39 x42 x57 x12 x14 x21 x45 x24 x33 x49 x5 x21 x28 x59 x25
x5 x5 x11 x12 x14 x19 x21 x21 x23 x24 x25 x27 x28 x30 x31 x33 x33 x35 x39 x39 x42 x44 x45 x45 x49 x51 x51 x56 x57 x57 x58 x59
{'task': 'sort', 'seq': ['x51', 'x35', 'x30', 'x33', 'x58', 'x56', 'x19', 'x31', 'x51', 'x57', 'x44', 'x11', 'x27', 'x5', 'x23', 'x45', 'x39', 'x39', 'x42', 'x57', 'x12', 'x14', 'x21', 'x45', 'x24', 'x33', 'x49', 'x5', 'x21', 'x28', 'x59', 'x25'], 'k': 4, 'n': 32, '_time': 0.00043272972106933594, '_task': 'basic_proced...
sort
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 o3 c3 o3 c3 c2 o0 o0 c0 o2 o0 c0 o2 o3 c3 o1 o2 o0 c0 c2 o3 o2 o3 c3 o1 c1 c2 c3 c1 c2 c2 c0
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00025582313537597656, '_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 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 o2 c2 c2 o2 c2 o0 o1 c1 c0 o3 c3 o2 c2 o2 o3 o1 c1 o0 c0 o0 c0 o0 o2 o2 o1 c1 c2 c2 c0 c3 c2
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003483295440673828, '_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 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 o0 o2 c2 o3 o2 c2 c3 o0 o1 o2 c2 o3 c3 o1 o3 o2 o3 c3 c2 c3 o1 o2 c2 o3 c3 c1 c1 c1 c0 c0 c1
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00025343894958496094, '_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) x8 x23 x24 x56 x59 x25 x11 x23 x57 x6 x42 x28 x27 x47 x60 x9 x63 x9 x34 x44 x5 x21 x43 x32 x22 x52 x61 x19 x41 x13 x13 x11
x8 x23 x24 x56 x59 x25 x11 x57 x6 x42 x28 x27 x47 x60 x9 x63 x34 x44 x5 x21 x43 x32 x22 x52 x61 x19 x41 x13
{'task': 'set', 'seq': ['x8', 'x23', 'x24', 'x56', 'x59', 'x25', 'x11', 'x23', 'x57', 'x6', 'x42', 'x28', 'x27', 'x47', 'x60', 'x9', 'x63', 'x9', 'x34', 'x44', 'x5', 'x21', 'x43', 'x32', 'x22', 'x52', 'x61', 'x19', 'x41', 'x13', 'x13', 'x11'], 'k': 4, 'n': 32, '_time': 0.00027751922607421875, '_task': 'basic_procedural...
set
instruct
0
Copy the sequence exactly. (SEQUENCE) x43 x44 x47 x28 x56 x52 x3 x38 x56 x32 x44 x17 x46 x43 x10 x57 x38 x11 x64 x47 x41 x17 x58 x8 x47 x48 x38 x13 x33 x41 x11 x53
x43 x44 x47 x28 x56 x52 x3 x38 x56 x32 x44 x17 x46 x43 x10 x57 x38 x11 x64 x47 x41 x17 x58 x8 x47 x48 x38 x13 x33 x41 x11 x53
{'task': 'identity', 'seq': ['x43', 'x44', 'x47', 'x28', 'x56', 'x52', 'x3', 'x38', 'x56', 'x32', 'x44', 'x17', 'x46', 'x43', 'x10', 'x57', 'x38', 'x11', 'x64', 'x47', 'x41', 'x17', 'x58', 'x8', 'x47', 'x48', 'x38', 'x13', 'x33', 'x41', 'x11', 'x53'], 'k': 4, 'n': 32, '_time': 0.0004181861877441406, '_task': 'basic_pro...
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 x23; PUSH x5; PUSH x39; POP; PUSH x12; PUSH x19; PUSH x3; PUSH x43; POP; PUSH x33; PUSH x7; PUSH x22; PUSH x51; PUSH x9; PUSH x42; PUSH x29; PUSH x8; POP;...
x22 x7 x33 x3 x19 x12 x5 x23
{'task': 'stack', 'seq': ['PUSH x23', 'PUSH x5', 'PUSH x39', 'POP', 'PUSH x12', 'PUSH x19', 'PUSH x3', 'PUSH x43', 'POP', 'PUSH x33', 'PUSH x7', 'PUSH x22', 'PUSH x51', 'PUSH x9', 'PUSH x42', 'PUSH x29', 'PUSH x8', 'POP', 'PUSH x61', 'PUSH x27', 'PUSH x17', 'PUSH x61', 'POP', 'POP', 'POP', 'POP', 'POP', 'PUSH x50', 'PO...
stack
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x58 x16 x49 x14 x53 x55 x32 x43 x10 x6 x37 x33 x40 x46 x31 x43 x47 x45 x16 x58 x57 x14 x32 x38 x21 x48 x48 x38 x28 x32 x48 x55
x6 x10 x14 x14 x16 x16 x21 x28 x31 x32 x32 x32 x33 x37 x38 x38 x40 x43 x43 x45 x46 x47 x48 x48 x48 x49 x53 x55 x55 x57 x58 x58
{'task': 'sort', 'seq': ['x58', 'x16', 'x49', 'x14', 'x53', 'x55', 'x32', 'x43', 'x10', 'x6', 'x37', 'x33', 'x40', 'x46', 'x31', 'x43', 'x47', 'x45', 'x16', 'x58', 'x57', 'x14', 'x32', 'x38', 'x21', 'x48', 'x48', 'x38', 'x28', 'x32', 'x48', 'x55'], 'k': 4, 'n': 32, '_time': 0.0003936290740966797, '_task': 'basic_proced...
sort
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x44 x54 x47 x48 x56 x29 x13 x15 x53 x39 x2 x4 x3 x7 x27 x5 x3 x25 x45 x45 x7 x19 x45 x34 x36 x1 x50 x40 x8 x63 x56 x41 (TARGET) x34
x44 x54 x47 x48 x56 x29 x13 x15 x53 x39 x2 x4 x3 x7 x27 x5 x3 x25 x45 x45 x7 x19 x45 x36 x1 x50 x40 x8 x63 x56 x41
{'task': 'delete', 'seq': [['x44', 'x54', 'x47', 'x48', 'x56', 'x29', 'x13', 'x15', 'x53', 'x39', 'x2', 'x4', 'x3', 'x7', 'x27', 'x5', 'x3', 'x25', 'x45', 'x45', 'x7', 'x19', 'x45', 'x34', 'x36', 'x1', 'x50', 'x40', 'x8', 'x63', 'x56', 'x41'], 'x34'], 'k': 4, 'n': 32, '_time': 0.00028705596923828125, '_task': 'basic_pr...
delete
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x24 x60 x49 x44 x16 x35 x21 x62 x2 x6 x26 x47 x64 x61 x47 x5 x30 x29 x20 x36 x52 x61 x19 x55 x35 x41 x62 x4 x19 x5 x53 x50
x2 x4 x5 x5 x6 x16 x19 x19 x20 x21 x24 x26 x29 x30 x35 x35 x36 x41 x44 x47 x47 x49 x50 x52 x53 x55 x60 x61 x61 x62 x62 x64
{'task': 'sort', 'seq': ['x24', 'x60', 'x49', 'x44', 'x16', 'x35', 'x21', 'x62', 'x2', 'x6', 'x26', 'x47', 'x64', 'x61', 'x47', 'x5', 'x30', 'x29', 'x20', 'x36', 'x52', 'x61', 'x19', 'x55', 'x35', 'x41', 'x62', 'x4', 'x19', 'x5', 'x53', 'x50'], 'k': 4, 'n': 32, '_time': 0.0004322528839111328, '_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.
o2 c2 o2 c2 o3 c3 o2 o3 o0 c0 o1 c1 c2 c3 o2 c2 o0 c0 o3 o0 c3 c0 o2 c2 o3 c3 o1 o2 o3 c2 c3 c1
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002961158752441406, '_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
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x50 x8 x54 x46 x48 x30 x37 x46 x16 x32 x62 x33 x18 x31 x36 x44 x38 x23 x8 x36 x52 x54 x39 x39 x4 x22 x20 x47 x1 x59 x7 x7 (TARGET) x44
x50 x8 x54 x46 x48 x30 x37 x46 x16 x32 x62 x33 x18 x31 x36 x38 x23 x8 x36 x52 x54 x39 x39 x4 x22 x20 x47 x1 x59 x7 x7
{'task': 'delete', 'seq': [['x50', 'x8', 'x54', 'x46', 'x48', 'x30', 'x37', 'x46', 'x16', 'x32', 'x62', 'x33', 'x18', 'x31', 'x36', 'x44', 'x38', 'x23', 'x8', 'x36', 'x52', 'x54', 'x39', 'x39', 'x4', 'x22', 'x20', 'x47', 'x1', 'x59', 'x7', 'x7'], 'x44'], 'k': 4, 'n': 32, '_time': 0.00043201446533203125, '_task': 'basic...
delete
instruct
0
Reverse the sequence. (SEQUENCE) x54 x47 x10 x56 x30 x44 x50 x49 x18 x40 x50 x51 x7 x14 x11 x8 x37 x50 x51 x22 x17 x17 x20 x51 x8 x25 x20 x35 x27 x20 x32 x33
x33 x32 x20 x27 x35 x20 x25 x8 x51 x20 x17 x17 x22 x51 x50 x37 x8 x11 x14 x7 x51 x50 x40 x18 x49 x50 x44 x30 x56 x10 x47 x54
{'task': 'reverse', 'seq': ['x54', 'x47', 'x10', 'x56', 'x30', 'x44', 'x50', 'x49', 'x18', 'x40', 'x50', 'x51', 'x7', 'x14', 'x11', 'x8', 'x37', 'x50', 'x51', 'x22', 'x17', 'x17', 'x20', 'x51', 'x8', 'x25', 'x20', 'x35', 'x27', 'x20', 'x32', 'x33'], 'k': 4, 'n': 32, '_time': 0.0002734661102294922, '_task': 'basic_proce...
reverse
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x50 x47 x56 x18 x40 x34 x54 x47 x56 x28 x26 x14 x20 x21 x17 x20 x33 x13 x42 x43 x29 x38 x42 x2 x26 x51 x23 x15 x32 x39 x12 x26
x50 x47 x56 x18 x40 x34 x54 x28 x26 x14 x20 x21 x17 x33 x13 x42 x43 x29 x38 x2 x51 x23 x15 x32 x39 x12
{'task': 'set', 'seq': ['x50', 'x47', 'x56', 'x18', 'x40', 'x34', 'x54', 'x47', 'x56', 'x28', 'x26', 'x14', 'x20', 'x21', 'x17', 'x20', 'x33', 'x13', 'x42', 'x43', 'x29', 'x38', 'x42', 'x2', 'x26', 'x51', 'x23', 'x15', 'x32', 'x39', 'x12', 'x26'], 'k': 4, 'n': 32, '_time': 0.00041747093200683594, '_task': 'basic_proced...
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) x11 x56 x46 x25 x25 x24 x16 x39 x27 x14 x17 x32 x39 x30 x24 x42 (B) x47 x64 x33 x24 x59 x48 x38 x54 x2 x3 x26 x60 x34 x20 x4 x40
x11 x56 x46 x25 x24 x16 x39 x27 x14 x17 x32 x30 x42 x47 x64 x33 x59 x48 x38 x54 x2 x3 x26 x60 x34 x20 x4 x40
{'task': 'union', 'seq': [['x11', 'x56', 'x46', 'x25', 'x25', 'x24', 'x16', 'x39', 'x27', 'x14', 'x17', 'x32', 'x39', 'x30', 'x24', 'x42'], ['x47', 'x64', 'x33', 'x24', 'x59', 'x48', 'x38', 'x54', 'x2', 'x3', 'x26', 'x60', 'x34', 'x20', 'x4', 'x40']], 'k': 4, 'n': 32, '_time': 0.00029778480529785156, '_task': 'basic_pr...
union
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x16 x5 x8 x62 x27 x59 x48 x44 x41 x18 x57 x3 x64 x39 x39 x26 x27 x61 x15 x61 x49 x28 x7 x30 x44 x56 x14 x11 x49 x59 x60 x2
x16 x5 x8 x62 x27 x59 x48 x44 x41 x18 x57 x3 x64 x39 x26 x61 x15 x49 x28 x7 x30 x56 x14 x11 x60 x2
{'task': 'set', 'seq': ['x16', 'x5', 'x8', 'x62', 'x27', 'x59', 'x48', 'x44', 'x41', 'x18', 'x57', 'x3', 'x64', 'x39', 'x39', 'x26', 'x27', 'x61', 'x15', 'x61', 'x49', 'x28', 'x7', 'x30', 'x44', 'x56', 'x14', 'x11', 'x49', 'x59', 'x60', 'x2'], 'k': 4, 'n': 32, '_time': 0.0003864765167236328, '_task': 'basic_procedural'...
set
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x20 x8 x54 x54 x22 x37 x64 x18 x2 x10 x7 x5 x41 x48 x21 x24 x16 x37 x64 x14 x51 x18 x16 x19 x62 x45 x28 x27 x8 x58 x3 x15 (TARGET) x15
x20 x8 x54 x54 x22 x37 x64 x18 x2 x10 x7 x5 x41 x48 x21 x24 x16 x37 x64 x14 x51 x18 x16 x19 x62 x45 x28 x27 x8 x58 x3
{'task': 'delete', 'seq': [['x20', 'x8', 'x54', 'x54', 'x22', 'x37', 'x64', 'x18', 'x2', 'x10', 'x7', 'x5', 'x41', 'x48', 'x21', 'x24', 'x16', 'x37', 'x64', 'x14', 'x51', 'x18', 'x16', 'x19', 'x62', 'x45', 'x28', 'x27', 'x8', 'x58', 'x3', 'x15'], 'x15'], 'k': 4, 'n': 32, '_time': 0.0004341602325439453, '_task': 'basic_...
delete
instruct
0
Copy the sequence exactly. (SEQUENCE) x31 x30 x56 x1 x11 x62 x27 x47 x21 x8 x16 x43 x30 x30 x55 x47 x10 x64 x53 x58 x15 x12 x51 x2 x25 x23 x8 x14 x17 x38 x48 x22
x31 x30 x56 x1 x11 x62 x27 x47 x21 x8 x16 x43 x30 x30 x55 x47 x10 x64 x53 x58 x15 x12 x51 x2 x25 x23 x8 x14 x17 x38 x48 x22
{'task': 'identity', 'seq': ['x31', 'x30', 'x56', 'x1', 'x11', 'x62', 'x27', 'x47', 'x21', 'x8', 'x16', 'x43', 'x30', 'x30', 'x55', 'x47', 'x10', 'x64', 'x53', 'x58', 'x15', 'x12', 'x51', 'x2', 'x25', 'x23', 'x8', 'x14', 'x17', 'x38', 'x48', 'x22'], 'k': 4, 'n': 32, '_time': 0.00027108192443847656, '_task': 'basic_proc...
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.
o3 o0 o2 c0 o1 c3 o2 o3 o1 o2 o3 c3 o1 o2 c1 c2 c3 c1 o2 o0 c0 c2 c1 o1 c2 c2 o0 o2 c2 c1 c2 c0
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0004477500915527344, '_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 x36; PUSH x15; PUSH x10; PUSH x61; PUSH x10; PUSH x10; PUSH x15; POP; PUSH x54; PUSH x27; POP; PUSH x14; PUSH x44; POP; PUSH x39; PUSH x38; POP; POP; PUSH...
x10 x10 x61 x10 x15 x36
{'task': 'stack', 'seq': ['PUSH x36', 'PUSH x15', 'PUSH x10', 'PUSH x61', 'PUSH x10', 'PUSH x10', 'PUSH x15', 'POP', 'PUSH x54', 'PUSH x27', 'POP', 'PUSH x14', 'PUSH x44', 'POP', 'PUSH x39', 'PUSH x38', 'POP', 'POP', 'PUSH x28', 'POP', 'PUSH x54', 'PUSH x38', 'PUSH x40', 'POP', 'POP', 'POP', 'POP', 'PUSH x61', 'POP', '...
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 o1 o2 o0 c0 c2 o0 c0 c1 o0 o3 o3 c3 c3 c0 c1 o1 c1 o3 o0 o2 o1 c1 c2 c0 c3 o1 c1 o0 c0
{'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 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 o3 o2 o3 o2 c2 o3 o3 c3 c3 o0 o2 o2 o2 c2 o1 c1 o0 c0 c2 o1 c1 c2 c0 c3 c2 c3 c3
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00025343894958496094, '_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) x56 x55 x11 x36 x35 x63 x35 x50 x18 x16 x40 x44 x25 x56 x13 x45 x62 x49 x2 x2 x49 x18 x28 x20 x2 x45 x50 x50 x24 x2 x59 x21
x56 x55 x11 x36 x35 x63 x35 x50 x18 x16 x40 x44 x25 x56 x13 x45 x62 x49 x2 x2 x49 x18 x28 x20 x2 x45 x50 x50 x24 x2 x59 x21
{'task': 'identity', 'seq': ['x56', 'x55', 'x11', 'x36', 'x35', 'x63', 'x35', 'x50', 'x18', 'x16', 'x40', 'x44', 'x25', 'x56', 'x13', 'x45', 'x62', 'x49', 'x2', 'x2', 'x49', 'x18', 'x28', 'x20', 'x2', 'x45', 'x50', 'x50', 'x24', 'x2', 'x59', 'x21'], 'k': 4, 'n': 32, '_time': 0.0002803802490234375, '_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.
o2 o3 c3 o2 c2 o0 c0 o0 c0 c2 o2 o3 o0 c0 o1 o3 o0 o3 c3 c0 o0 c0 o3 o3 o2 c2 c3 c3 c3 c1 c3 c2
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00037932395935058594, '_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 c1 o1 c1 o3 c3 o1 c1 o0 c0 o3 c3 o3 c3 o0 c0 o2 c2 o0 c0 o2 c2 o2 o1 o1 o2 c1 c1 c2 o3 c2 c3
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002884864807128906, '_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
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x18 x16 x61 x10 x14 x6 x9 x12 x1 x5 x57 x10 x40 x32 x36 x5 x35 x9 x39 x58 x23 x25 x15 x33 x37 x19 x35 x48 x45 x40 x34 x55 (TARGET) x15
x18 x16 x61 x10 x14 x6 x9 x12 x1 x5 x57 x10 x40 x32 x36 x5 x35 x9 x39 x58 x23 x25 x33 x37 x19 x35 x48 x45 x40 x34 x55
{'task': 'delete', 'seq': [['x18', 'x16', 'x61', 'x10', 'x14', 'x6', 'x9', 'x12', 'x1', 'x5', 'x57', 'x10', 'x40', 'x32', 'x36', 'x5', 'x35', 'x9', 'x39', 'x58', 'x23', 'x25', 'x15', 'x33', 'x37', 'x19', 'x35', 'x48', 'x45', 'x40', 'x34', 'x55'], 'x15'], 'k': 4, 'n': 32, '_time': 0.0004394054412841797, '_task': 'basic_...
delete
instruct
0
Copy the sequence exactly. (SEQUENCE) x61 x28 x37 x46 x48 x15 x59 x10 x60 x1 x28 x36 x47 x59 x60 x13 x33 x51 x27 x51 x23 x44 x64 x31 x64 x17 x54 x45 x39 x28 x41 x26
x61 x28 x37 x46 x48 x15 x59 x10 x60 x1 x28 x36 x47 x59 x60 x13 x33 x51 x27 x51 x23 x44 x64 x31 x64 x17 x54 x45 x39 x28 x41 x26
{'task': 'identity', 'seq': ['x61', 'x28', 'x37', 'x46', 'x48', 'x15', 'x59', 'x10', 'x60', 'x1', 'x28', 'x36', 'x47', 'x59', 'x60', 'x13', 'x33', 'x51', 'x27', 'x51', 'x23', 'x44', 'x64', 'x31', 'x64', 'x17', 'x54', 'x45', 'x39', 'x28', 'x41', 'x26'], 'k': 4, 'n': 32, '_time': 0.0002713203430175781, '_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 x47; PUSH x49; PUSH x46; POP; POP; POP; PUSH x55; PUSH x58; PUSH x36; PUSH x21; POP; POP; POP; POP; PUSH x44; PUSH x20; POP; PUSH x8; PUSH x18; PUSH x22; ...
x9 x35 x60 x42 x43 x27 x22 x18 x8 x44
{'task': 'stack', 'seq': ['PUSH x47', 'PUSH x49', 'PUSH x46', 'POP', 'POP', 'POP', 'PUSH x55', 'PUSH x58', 'PUSH x36', 'PUSH x21', 'POP', 'POP', 'POP', 'POP', 'PUSH x44', 'PUSH x20', 'POP', 'PUSH x8', 'PUSH x18', 'PUSH x22', 'PUSH x27', 'PUSH x25', 'POP', 'PUSH x31', 'POP', 'PUSH x43', 'PUSH x42', 'PUSH x60', 'PUSH x35...
stack
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x37 x60 x20 x51 x49 x8 x5 x26 x26 x55 x29 x50 x53 x3 x29 x64 x6 x10 x6 x6 x61 x50 x48 x30 x21 x22 x2 x32 x50 x40 x40 x34
x2 x3 x5 x6 x6 x6 x8 x10 x20 x21 x22 x26 x26 x29 x29 x30 x32 x34 x37 x40 x40 x48 x49 x50 x50 x50 x51 x53 x55 x60 x61 x64
{'task': 'sort', 'seq': ['x37', 'x60', 'x20', 'x51', 'x49', 'x8', 'x5', 'x26', 'x26', 'x55', 'x29', 'x50', 'x53', 'x3', 'x29', 'x64', 'x6', 'x10', 'x6', 'x6', 'x61', 'x50', 'x48', 'x30', 'x21', 'x22', 'x2', 'x32', 'x50', 'x40', 'x40', 'x34'], 'k': 4, 'n': 32, '_time': 0.00043129920959472656, '_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) x17 x29 x38 x14 x37 x37 x6 x62 x29 x25 x34 x26 x46 x22 x17 x41 (B) x2 x15 x10 x61 x61 x24 x40 x36 x4 x42 x17 x25 x7 x11 x21 x55
x17 x29 x38 x14 x37 x6 x62 x25 x34 x26 x46 x22 x41 x2 x15 x10 x61 x24 x40 x36 x4 x42 x7 x11 x21 x55
{'task': 'union', 'seq': [['x17', 'x29', 'x38', 'x14', 'x37', 'x37', 'x6', 'x62', 'x29', 'x25', 'x34', 'x26', 'x46', 'x22', 'x17', 'x41'], ['x2', 'x15', 'x10', 'x61', 'x61', 'x24', 'x40', 'x36', 'x4', 'x42', 'x17', 'x25', 'x7', 'x11', 'x21', 'x55']], 'k': 4, 'n': 32, '_time': 0.0004482269287109375, '_task': 'basic_proc...
union
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x51 x61 x22 x48 x47 x6 x21 x43 x5 x16 x46 x5 x60 x27 x6 x6 x21 x59 x54 x48 x63 x55 x46 x52 x17 x17 x35 x12 x45 x2 x31 x56 (TARGET) x35
x51 x61 x22 x48 x47 x6 x21 x43 x5 x16 x46 x5 x60 x27 x6 x6 x21 x59 x54 x48 x63 x55 x46 x52 x17 x17 x12 x45 x2 x31 x56
{'task': 'delete', 'seq': [['x51', 'x61', 'x22', 'x48', 'x47', 'x6', 'x21', 'x43', 'x5', 'x16', 'x46', 'x5', 'x60', 'x27', 'x6', 'x6', 'x21', 'x59', 'x54', 'x48', 'x63', 'x55', 'x46', 'x52', 'x17', 'x17', 'x35', 'x12', 'x45', 'x2', 'x31', 'x56'], 'x35'], 'k': 4, 'n': 32, '_time': 0.0004544258117675781, '_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.
o3 o2 o0 o1 c1 o3 o2 o3 c3 c2 c3 c0 o1 o0 c0 o0 o0 o1 o1 o3 o3 o2 c2 c3 c3 c1 c1 c0 c0 c1 c2 c3
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00025963783264160156, '_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) x25 x29 x24 x36 x41 x15 x47 x21 x19 x60 x21 x41 x45 x16 x30 x36 x46 x20 x5 x8 x30 x33 x17 x18 x29 x17 x9 x18 x62 x1 x9 x15
x25 x29 x24 x36 x41 x15 x47 x21 x19 x60 x21 x41 x45 x16 x30 x36 x46 x20 x5 x8 x30 x33 x17 x18 x29 x17 x9 x18 x62 x1 x9 x15
{'task': 'identity', 'seq': ['x25', 'x29', 'x24', 'x36', 'x41', 'x15', 'x47', 'x21', 'x19', 'x60', 'x21', 'x41', 'x45', 'x16', 'x30', 'x36', 'x46', 'x20', 'x5', 'x8', 'x30', 'x33', 'x17', 'x18', 'x29', 'x17', 'x9', 'x18', 'x62', 'x1', 'x9', 'x15'], 'k': 4, 'n': 32, '_time': 0.00027179718017578125, '_task': 'basic_proce...
identity
instruct
0
Copy the sequence exactly. (SEQUENCE) x32 x48 x3 x36 x30 x28 x17 x34 x32 x57 x21 x63 x56 x39 x51 x17 x33 x20 x49 x46 x4 x9 x6 x14 x34 x54 x3 x27 x60 x1 x16 x21
x32 x48 x3 x36 x30 x28 x17 x34 x32 x57 x21 x63 x56 x39 x51 x17 x33 x20 x49 x46 x4 x9 x6 x14 x34 x54 x3 x27 x60 x1 x16 x21
{'task': 'identity', 'seq': ['x32', 'x48', 'x3', 'x36', 'x30', 'x28', 'x17', 'x34', 'x32', 'x57', 'x21', 'x63', 'x56', 'x39', 'x51', 'x17', 'x33', 'x20', 'x49', 'x46', 'x4', 'x9', 'x6', 'x14', 'x34', 'x54', 'x3', 'x27', 'x60', 'x1', 'x16', 'x21'], 'k': 4, 'n': 32, '_time': 0.0004189014434814453, '_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.
o3 o1 o1 o1 c1 c1 c1 o2 c2 c3 o0 c0 o2 c2 o1 o2 o2 c2 c2 c1 o1 c1 o2 c2 o2 c2 o1 c1 o0 c0 o0 c0
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003142356872558594, '_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) x49 x49 x21 x31 x21 x1 x51 x51 x64 x31 x57 x45 x58 x11 x25 x54 x13 x63 x13 x22 x55 x18 x18 x8 x51 x27 x33 x12 x64 x22 x32 x17
x49 x21 x31 x1 x51 x64 x57 x45 x58 x11 x25 x54 x13 x63 x22 x55 x18 x8 x27 x33 x12 x32 x17
{'task': 'set', 'seq': ['x49', 'x49', 'x21', 'x31', 'x21', 'x1', 'x51', 'x51', 'x64', 'x31', 'x57', 'x45', 'x58', 'x11', 'x25', 'x54', 'x13', 'x63', 'x13', 'x22', 'x55', 'x18', 'x18', 'x8', 'x51', 'x27', 'x33', 'x12', 'x64', 'x22', 'x32', 'x17'], 'k': 4, 'n': 32, '_time': 0.0002758502960205078, '_task': 'basic_procedur...
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 x5; POP; PUSH x38; PUSH x62; POP; POP; PUSH x17; PUSH x14; PUSH x35; PUSH x6; PUSH x41; POP; PUSH x26; PUSH x49; POP; PUSH x17; PUSH x63; POP; PUSH x5; PU...
x14 x17
{'task': 'stack', 'seq': ['PUSH x5', 'POP', 'PUSH x38', 'PUSH x62', 'POP', 'POP', 'PUSH x17', 'PUSH x14', 'PUSH x35', 'PUSH x6', 'PUSH x41', 'POP', 'PUSH x26', 'PUSH x49', 'POP', 'PUSH x17', 'PUSH x63', 'POP', 'PUSH x5', 'PUSH x51', 'PUSH x37', 'PUSH x20', 'POP', 'POP', 'POP', 'POP', 'POP', 'PUSH x6', 'POP', 'POP', 'PO...
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.
o3 o3 o0 c0 o0 o3 o3 o2 c2 o3 c3 o0 o3 c3 o2 c2 o2 o0 o3 o2 o3 c3 c2 c3 c0 c2 c0 c3 c3 c0 c3 c3
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00025534629821777344, '_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) x39 x23 x9 x28 x60 x58 x2 x48 x23 x9 x63 x32 x41 x21 x31 x10 (B) x9 x51 x10 x32 x22 x3 x26 x22 x64 x47 x30 x61 x7 x23 x21 x19
x39 x23 x9 x28 x60 x58 x2 x48 x63 x32 x41 x21 x31 x10 x51 x22 x3 x26 x64 x47 x30 x61 x7 x19
{'task': 'union', 'seq': [['x39', 'x23', 'x9', 'x28', 'x60', 'x58', 'x2', 'x48', 'x23', 'x9', 'x63', 'x32', 'x41', 'x21', 'x31', 'x10'], ['x9', 'x51', 'x10', 'x32', 'x22', 'x3', 'x26', 'x22', 'x64', 'x47', 'x30', 'x61', 'x7', 'x23', 'x21', 'x19']], 'k': 4, 'n': 32, '_time': 0.0004456043243408203, '_task': 'basic_proced...
union
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x46 x51 x29 x6 x46 x59 x35 x59 x31 x15 x32 x51 x46 x18 x52 x10 x58 x8 x58 x23 x13 x37 x60 x50 x26 x30 x63 x22 x64 x30 x13 x51
x46 x51 x29 x6 x59 x35 x31 x15 x32 x18 x52 x10 x58 x8 x23 x13 x37 x60 x50 x26 x30 x63 x22 x64
{'task': 'set', 'seq': ['x46', 'x51', 'x29', 'x6', 'x46', 'x59', 'x35', 'x59', 'x31', 'x15', 'x32', 'x51', 'x46', 'x18', 'x52', 'x10', 'x58', 'x8', 'x58', 'x23', 'x13', 'x37', 'x60', 'x50', 'x26', 'x30', 'x63', 'x22', 'x64', 'x30', 'x13', 'x51'], 'k': 4, 'n': 32, '_time': 0.0002753734588623047, '_task': 'basic_procedur...
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 x56; PUSH x26; PUSH x24; POP; PUSH x3; POP; PUSH x31; PUSH x56; POP; POP; PUSH x19; PUSH x3; PUSH x44; PUSH x30; PUSH x25; PUSH x3; PUSH x36; POP; PUSH x2...
x3 x25 x30 x44 x3 x19 x26 x56
{'task': 'stack', 'seq': ['PUSH x56', 'PUSH x26', 'PUSH x24', 'POP', 'PUSH x3', 'POP', 'PUSH x31', 'PUSH x56', 'POP', 'POP', 'PUSH x19', 'PUSH x3', 'PUSH x44', 'PUSH x30', 'PUSH x25', 'PUSH x3', 'PUSH x36', 'POP', 'PUSH x2', 'PUSH x27', 'PUSH x20', 'PUSH x15', 'PUSH x51', 'POP', 'PUSH x38', 'PUSH x3', 'POP', 'POP', 'PO...
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.
o3 c3 o3 c3 o1 c1 o2 o0 c2 o1 o2 o3 o1 c1 o2 c0 c1 o3 o3 o3 o3 c3 o2 o0 c0 c3 c3 c2 c2 c2 c3 c3
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003666877746582031, '_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) x22 x23 x60 x5 x9 x15 x23 x5 x18 x27 x30 x43 x51 x23 x23 x14 x50 x45 x41 x48 x46 x53 x22 x54 x51 x11 x54 x40 x15 x11 x48 x2
x22 x23 x60 x5 x9 x15 x18 x27 x30 x43 x51 x14 x50 x45 x41 x48 x46 x53 x54 x11 x40 x2
{'task': 'set', 'seq': ['x22', 'x23', 'x60', 'x5', 'x9', 'x15', 'x23', 'x5', 'x18', 'x27', 'x30', 'x43', 'x51', 'x23', 'x23', 'x14', 'x50', 'x45', 'x41', 'x48', 'x46', 'x53', 'x22', 'x54', 'x51', 'x11', 'x54', 'x40', 'x15', 'x11', 'x48', 'x2'], 'k': 4, 'n': 32, '_time': 0.0004143714904785156, '_task': 'basic_procedural...
set
instruct
0
Reverse the sequence. (SEQUENCE) x64 x25 x29 x44 x49 x36 x43 x47 x45 x35 x50 x6 x28 x42 x30 x64 x5 x45 x58 x13 x44 x4 x43 x18 x25 x54 x25 x7 x6 x12 x41 x38
x38 x41 x12 x6 x7 x25 x54 x25 x18 x43 x4 x44 x13 x58 x45 x5 x64 x30 x42 x28 x6 x50 x35 x45 x47 x43 x36 x49 x44 x29 x25 x64
{'task': 'reverse', 'seq': ['x64', 'x25', 'x29', 'x44', 'x49', 'x36', 'x43', 'x47', 'x45', 'x35', 'x50', 'x6', 'x28', 'x42', 'x30', 'x64', 'x5', 'x45', 'x58', 'x13', 'x44', 'x4', 'x43', 'x18', 'x25', 'x54', 'x25', 'x7', 'x6', 'x12', 'x41', 'x38'], 'k': 4, 'n': 32, '_time': 0.0002713203430175781, '_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 x18; POP; PUSH x40; PUSH x54; POP; PUSH x59; POP; PUSH x16; PUSH x49; PUSH x36; PUSH x22; PUSH x30; PUSH x24; PUSH x2; POP; PUSH x30; PUSH x37; PUSH x52; ...
x36 x49 x16 x40
{'task': 'stack', 'seq': ['PUSH x18', 'POP', 'PUSH x40', 'PUSH x54', 'POP', 'PUSH x59', 'POP', 'PUSH x16', 'PUSH x49', 'PUSH x36', 'PUSH x22', 'PUSH x30', 'PUSH x24', 'PUSH x2', 'POP', 'PUSH x30', 'PUSH x37', 'PUSH x52', 'POP', 'PUSH x21', 'PUSH x24', 'PUSH x39', 'POP', 'POP', 'POP', 'POP', 'PUSH x50', 'POP', 'POP', '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) x46 x19 x10 x17 x20 x30 x31 x64 x54 x58 x21 x8 x8 x55 x50 x1 (B) x42 x47 x54 x30 x41 x13 x18 x44 x18 x22 x33 x37 x51 x39 x18 x44
x46 x19 x10 x17 x20 x30 x31 x64 x54 x58 x21 x8 x55 x50 x1 x42 x47 x41 x13 x18 x44 x22 x33 x37 x51 x39
{'task': 'union', 'seq': [['x46', 'x19', 'x10', 'x17', 'x20', 'x30', 'x31', 'x64', 'x54', 'x58', 'x21', 'x8', 'x8', 'x55', 'x50', 'x1'], ['x42', 'x47', 'x54', 'x30', 'x41', 'x13', 'x18', 'x44', 'x18', 'x22', 'x33', 'x37', 'x51', 'x39', 'x18', 'x44']], 'k': 4, 'n': 32, '_time': 0.0004456043243408203, '_task': 'basic_pro...
union
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x56 x40 x9 x64 x25 x48 x16 x40 x19 x43 x41 x27 x9 x4 x20 x37 x32 x42 x16 x50 x27 x54 x27 x56 x42 x30 x8 x8 x47 x42 x45 x24
x56 x40 x9 x64 x25 x48 x16 x19 x43 x41 x27 x4 x20 x37 x32 x42 x50 x54 x30 x8 x47 x45 x24
{'task': 'set', 'seq': ['x56', 'x40', 'x9', 'x64', 'x25', 'x48', 'x16', 'x40', 'x19', 'x43', 'x41', 'x27', 'x9', 'x4', 'x20', 'x37', 'x32', 'x42', 'x16', 'x50', 'x27', 'x54', 'x27', 'x56', 'x42', 'x30', 'x8', 'x8', 'x47', 'x42', 'x45', 'x24'], 'k': 4, 'n': 32, '_time': 0.0002655982971191406, '_task': 'basic_procedural'...
set
instruct
0
Copy the sequence exactly. (SEQUENCE) x42 x30 x19 x44 x44 x2 x53 x60 x50 x17 x33 x53 x9 x21 x23 x23 x7 x46 x9 x37 x56 x27 x25 x2 x4 x38 x43 x38 x27 x29 x45 x57
x42 x30 x19 x44 x44 x2 x53 x60 x50 x17 x33 x53 x9 x21 x23 x23 x7 x46 x9 x37 x56 x27 x25 x2 x4 x38 x43 x38 x27 x29 x45 x57
{'task': 'identity', 'seq': ['x42', 'x30', 'x19', 'x44', 'x44', 'x2', 'x53', 'x60', 'x50', 'x17', 'x33', 'x53', 'x9', 'x21', 'x23', 'x23', 'x7', 'x46', 'x9', 'x37', 'x56', 'x27', 'x25', 'x2', 'x4', 'x38', 'x43', 'x38', 'x27', 'x29', 'x45', 'x57'], 'k': 4, 'n': 32, '_time': 0.0004100799560546875, '_task': 'basic_procedu...
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.
o0 c0 o3 c3 o2 o2 c2 o2 o2 o2 c2 o2 c2 o3 o2 o0 c2 o0 o1 o0 o1 o2 c3 c1 c0 c2 c0 c1 c0 c2 c2 c2
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00044465065002441406, '_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 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 c1 o3 c3 o3 c3 o0 c0 o2 o2 o0 c0 c2 c2 o2 o2 c2 o3 o2 c2 o3 o0 o0 c0 c0 o2 c2 c3 c3 o0 c0 c2
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00025391578674316406, '_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.
o0 o3 c3 c0 o0 o3 o2 o2 c3 o0 o3 o3 o2 o3 c2 c3 o2 o3 o0 o0 c2 o0 c2 c2 c0 c3 c0 c3 c0 c3 c0 c0
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003216266632080078, '_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) x16 x43 x23 x49 x45 x24 x64 x5 x9 x24 x58 x56 x9 x35 x51 x62 x23 x54 x13 x41 x41 x28 x60 x21 x42 x5 x15 x46 x60 x1 x45 x61
x16 x43 x23 x49 x45 x24 x64 x5 x9 x58 x56 x35 x51 x62 x54 x13 x41 x28 x60 x21 x42 x15 x46 x1 x61
{'task': 'set', 'seq': ['x16', 'x43', 'x23', 'x49', 'x45', 'x24', 'x64', 'x5', 'x9', 'x24', 'x58', 'x56', 'x9', 'x35', 'x51', 'x62', 'x23', 'x54', 'x13', 'x41', 'x41', 'x28', 'x60', 'x21', 'x42', 'x5', 'x15', 'x46', 'x60', 'x1', 'x45', 'x61'], 'k': 4, 'n': 32, '_time': 0.0004172325134277344, '_task': 'basic_procedural'...
set
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x41 x6 x18 x43 x9 x34 x63 x16 x49 x19 x36 x34 x33 x13 x4 x58 x37 x15 x23 x1 x57 x11 x3 x16 x45 x20 x51 x11 x9 x46 x15 x50
x41 x6 x18 x43 x9 x34 x63 x16 x49 x19 x36 x33 x13 x4 x58 x37 x15 x23 x1 x57 x11 x3 x45 x20 x51 x46 x50
{'task': 'set', 'seq': ['x41', 'x6', 'x18', 'x43', 'x9', 'x34', 'x63', 'x16', 'x49', 'x19', 'x36', 'x34', 'x33', 'x13', 'x4', 'x58', 'x37', 'x15', 'x23', 'x1', 'x57', 'x11', 'x3', 'x16', 'x45', 'x20', 'x51', 'x11', 'x9', 'x46', 'x15', 'x50'], 'k': 4, 'n': 32, '_time': 0.0002796649932861328, '_task': 'basic_procedural',...
set
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x27 x59 x22 x52 x1 x47 x15 x22 x47 x24 x3 x26 x40 x14 x45 x35 x63 x1 x2 x44 x47 x12 x16 x31 x37 x44 x8 x14 x41 x28 x19 x39 (TARGET) x12
x27 x59 x22 x52 x1 x47 x15 x22 x47 x24 x3 x26 x40 x14 x45 x35 x63 x1 x2 x44 x47 x16 x31 x37 x44 x8 x14 x41 x28 x19 x39
{'task': 'delete', 'seq': [['x27', 'x59', 'x22', 'x52', 'x1', 'x47', 'x15', 'x22', 'x47', 'x24', 'x3', 'x26', 'x40', 'x14', 'x45', 'x35', 'x63', 'x1', 'x2', 'x44', 'x47', 'x12', 'x16', 'x31', 'x37', 'x44', 'x8', 'x14', 'x41', 'x28', 'x19', 'x39'], 'x12'], 'k': 4, 'n': 32, '_time': 0.0003349781036376953, '_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.
o0 o0 c0 c0 o0 c0 o3 o3 o3 o0 c0 c3 o0 o3 o3 o3 o0 o0 c0 o0 c0 c0 o3 o3 c3 c3 c3 c3 c3 c0 c3 c3
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003883838653564453, '_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) x25 x4 x23 x6 x34 x15 x23 x31 x62 x1 x27 x52 x29 x50 x57 x30 x52 x41 x21 x38 x49 x6 x10 x3 x35 x18 x15 x62 x51 x8 x21 x46
x25 x4 x23 x6 x34 x15 x23 x31 x62 x1 x27 x52 x29 x50 x57 x30 x52 x41 x21 x38 x49 x6 x10 x3 x35 x18 x15 x62 x51 x8 x21 x46
{'task': 'identity', 'seq': ['x25', 'x4', 'x23', 'x6', 'x34', 'x15', 'x23', 'x31', 'x62', 'x1', 'x27', 'x52', 'x29', 'x50', 'x57', 'x30', 'x52', 'x41', 'x21', 'x38', 'x49', 'x6', 'x10', 'x3', 'x35', 'x18', 'x15', 'x62', 'x51', 'x8', 'x21', 'x46'], 'k': 4, 'n': 32, '_time': 0.0002968311309814453, '_task': 'basic_procedu...
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 x12; POP; PUSH x27; PUSH x36; POP; PUSH x52; PUSH x29; PUSH x63; PUSH x22; PUSH x38; PUSH x30; PUSH x29; PUSH x3; POP; PUSH x47; PUSH x9; POP; PUSH x63; P...
x52 x27
{'task': 'stack', 'seq': ['PUSH x12', 'POP', 'PUSH x27', 'PUSH x36', 'POP', 'PUSH x52', 'PUSH x29', 'PUSH x63', 'PUSH x22', 'PUSH x38', 'PUSH x30', 'PUSH x29', 'PUSH x3', 'POP', 'PUSH x47', 'PUSH x9', 'POP', 'PUSH x63', 'PUSH x34', 'POP', 'PUSH x11', 'POP', 'POP', 'POP', 'PUSH x25', 'POP', 'POP', 'POP', 'POP', 'POP', '...
stack
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x47 x53 x31 x29 x56 x58 x41 x23 x45 x52 x62 x5 x19 x57 x9 x8 x18 x28 x17 x62 x35 x52 x10 x2 x11 x31 x20 x5 x44 x35 x25 x51
x2 x5 x5 x8 x9 x10 x11 x17 x18 x19 x20 x23 x25 x28 x29 x31 x31 x35 x35 x41 x44 x45 x47 x51 x52 x52 x53 x56 x57 x58 x62 x62
{'task': 'sort', 'seq': ['x47', 'x53', 'x31', 'x29', 'x56', 'x58', 'x41', 'x23', 'x45', 'x52', 'x62', 'x5', 'x19', 'x57', 'x9', 'x8', 'x18', 'x28', 'x17', 'x62', 'x35', 'x52', 'x10', 'x2', 'x11', 'x31', 'x20', 'x5', 'x44', 'x35', 'x25', 'x51'], 'k': 4, 'n': 32, '_time': 0.0004322528839111328, '_task': 'basic_procedural...
sort
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 x56; PUSH x60; PUSH x45; PUSH x16; PUSH x42; PUSH x57; PUSH x3; PUSH x19; PUSH x50; POP; PUSH x32; PUSH x34; POP; POP; PUSH x2; POP; PUSH x13; P...
x47 x60 x56 x20
{'task': 'stack', 'seq': ['PUSH x20', 'PUSH x56', 'PUSH x60', 'PUSH x45', 'PUSH x16', 'PUSH x42', 'PUSH x57', 'PUSH x3', 'PUSH x19', 'PUSH x50', 'POP', 'PUSH x32', 'PUSH x34', 'POP', 'POP', 'PUSH x2', 'POP', 'PUSH x13', 'PUSH x53', 'PUSH x50', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'PUSH x23', 'POP', 'POP', 'POP', '...
stack
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x24 x4 x61 x54 x26 x56 x20 x40 x64 x30 x10 x44 x13 x51 x26 x29 x19 x53 x37 x23 x33 x58 x17 x38 x2 x59 x57 x61 x56 x52 x53 x26
x24 x4 x61 x54 x26 x56 x20 x40 x64 x30 x10 x44 x13 x51 x29 x19 x53 x37 x23 x33 x58 x17 x38 x2 x59 x57 x52
{'task': 'set', 'seq': ['x24', 'x4', 'x61', 'x54', 'x26', 'x56', 'x20', 'x40', 'x64', 'x30', 'x10', 'x44', 'x13', 'x51', 'x26', 'x29', 'x19', 'x53', 'x37', 'x23', 'x33', 'x58', 'x17', 'x38', 'x2', 'x59', 'x57', 'x61', 'x56', 'x52', 'x53', 'x26'], 'k': 4, 'n': 32, '_time': 0.00027751922607421875, '_task': 'basic_procedu...
set
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x42 x31 x51 x51 x49 x54 x56 x3 x8 x62 x38 x51 x53 x30 x16 x19 x61 x31 x53 x16 x46 x54 x45 x10 x60 x64 x45 x1 x64 x62 x5 x40
x42 x31 x51 x49 x54 x56 x3 x8 x62 x38 x53 x30 x16 x19 x61 x46 x45 x10 x60 x64 x1 x5 x40
{'task': 'set', 'seq': ['x42', 'x31', 'x51', 'x51', 'x49', 'x54', 'x56', 'x3', 'x8', 'x62', 'x38', 'x51', 'x53', 'x30', 'x16', 'x19', 'x61', 'x31', 'x53', 'x16', 'x46', 'x54', 'x45', 'x10', 'x60', 'x64', 'x45', 'x1', 'x64', 'x62', 'x5', 'x40'], 'k': 4, 'n': 32, '_time': 0.0004150867462158203, '_task': 'basic_procedural...
set
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x44 x46 x40 x43 x35 x48 x20 x16 x13 x60 x32 x24 x8 x36 x21 x50 x12 x18 x43 x8 x33 x43 x47 x16 x23 x8 x19 x57 x39 x52 x51 x49 (TARGET) x39
x44 x46 x40 x43 x35 x48 x20 x16 x13 x60 x32 x24 x8 x36 x21 x50 x12 x18 x43 x8 x33 x43 x47 x16 x23 x8 x19 x57 x52 x51 x49
{'task': 'delete', 'seq': [['x44', 'x46', 'x40', 'x43', 'x35', 'x48', 'x20', 'x16', 'x13', 'x60', 'x32', 'x24', 'x8', 'x36', 'x21', 'x50', 'x12', 'x18', 'x43', 'x8', 'x33', 'x43', 'x47', 'x16', 'x23', 'x8', 'x19', 'x57', 'x39', 'x52', 'x51', 'x49'], 'x39'], 'k': 4, 'n': 32, '_time': 0.0004317760467529297, '_task': 'bas...
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.
o0 o1 o3 c3 o1 c1 o1 c0 o0 o2 o0 o3 o1 c3 c2 c0 o0 o2 c0 o2 c2 c2 o0 o3 c3 c1 o0 c0 c1 c1 c0 c0
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002989768981933594, '_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 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 o1 o1 c1 c1 c2 o2 o2 o2 c2 c2 o2 o2 o3 c3 c2 c2 o1 c1 c2 o1 c1 o2 c2 o1 o1 c1 c1 o0 c0
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002543926239013672, '_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 c3 o2 c2 o3 c3 o2 c2 o2 c2 o3 o3 o0 c0 c3 o3 c3 c3 o1 c1 o3 c3 o1 o0 o3 o1 c1 c0 c3 c1
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00044798851013183594, '_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
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x1 x53 x63 x41 x3 x21 x26 x11 x28 x33 x21 x9 x60 x48 x46 x2 x42 x55 x18 x25 x34 x18 x41 x8 x54 x38 x57 x24 x3 x57 x35 x5 (TARGET) x42
x1 x53 x63 x41 x3 x21 x26 x11 x28 x33 x21 x9 x60 x48 x46 x2 x55 x18 x25 x34 x18 x41 x8 x54 x38 x57 x24 x3 x57 x35 x5
{'task': 'delete', 'seq': [['x1', 'x53', 'x63', 'x41', 'x3', 'x21', 'x26', 'x11', 'x28', 'x33', 'x21', 'x9', 'x60', 'x48', 'x46', 'x2', 'x42', 'x55', 'x18', 'x25', 'x34', 'x18', 'x41', 'x8', 'x54', 'x38', 'x57', 'x24', 'x3', 'x57', 'x35', 'x5'], 'x42'], 'k': 4, 'n': 32, '_time': 0.00028777122497558594, '_task': 'basic_...
delete
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x31 x42 x27 x29 x17 x4 x16 x36 x36 x27 x5 x26 x24 x15 x36 x58 x61 x14 x36 x7 x55 x2 x27 x8 x47 x7 x60 x61 x29 x39 x63 x63 (TARGET) x61
x31 x42 x27 x29 x17 x4 x16 x36 x36 x27 x5 x26 x24 x15 x36 x58 x14 x36 x7 x55 x2 x27 x8 x47 x7 x60 x61 x29 x39 x63 x63
{'task': 'delete', 'seq': [['x31', 'x42', 'x27', 'x29', 'x17', 'x4', 'x16', 'x36', 'x36', 'x27', 'x5', 'x26', 'x24', 'x15', 'x36', 'x58', 'x61', 'x14', 'x36', 'x7', 'x55', 'x2', 'x27', 'x8', 'x47', 'x7', 'x60', 'x61', 'x29', 'x39', 'x63', 'x63'], 'x61'], 'k': 4, 'n': 32, '_time': 0.0004322528839111328, '_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.
o0 c0 o3 o2 o3 o0 o2 c2 o1 c1 o3 o3 c3 o1 c1 c3 c0 o3 o3 o2 o0 c0 o3 c3 c2 o2 c2 c3 c3 c3 c2 c3
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00025391578674316406, '_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) x35 x4 x61 x50 x2 x64 x48 x63 x61 x8 x40 x13 x20 x48 x47 x22 x45 x16 x26 x29 x31 x20 x6 x1 x9 x42 x60 x59 x21 x55 x4 x38
x1 x2 x4 x4 x6 x8 x9 x13 x16 x20 x20 x21 x22 x26 x29 x31 x35 x38 x40 x42 x45 x47 x48 x48 x50 x55 x59 x60 x61 x61 x63 x64
{'task': 'sort', 'seq': ['x35', 'x4', 'x61', 'x50', 'x2', 'x64', 'x48', 'x63', 'x61', 'x8', 'x40', 'x13', 'x20', 'x48', 'x47', 'x22', 'x45', 'x16', 'x26', 'x29', 'x31', 'x20', 'x6', 'x1', 'x9', 'x42', 'x60', 'x59', 'x21', 'x55', 'x4', 'x38'], 'k': 4, 'n': 32, '_time': 0.0002868175506591797, '_task': 'basic_procedural',...
sort
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x34 x19 x1 x34 x58 x14 x11 x7 x22 x1 x64 x54 x35 x4 x41 x35 x44 x30 x11 x8 x23 x31 x43 x56 x10 x47 x29 x3 x43 x38 x31 x13 (TARGET) x64
x34 x19 x1 x34 x58 x14 x11 x7 x22 x1 x54 x35 x4 x41 x35 x44 x30 x11 x8 x23 x31 x43 x56 x10 x47 x29 x3 x43 x38 x31 x13
{'task': 'delete', 'seq': [['x34', 'x19', 'x1', 'x34', 'x58', 'x14', 'x11', 'x7', 'x22', 'x1', 'x64', 'x54', 'x35', 'x4', 'x41', 'x35', 'x44', 'x30', 'x11', 'x8', 'x23', 'x31', 'x43', 'x56', 'x10', 'x47', 'x29', 'x3', 'x43', 'x38', 'x31', 'x13'], 'x64'], 'k': 4, 'n': 32, '_time': 0.0004329681396484375, '_task': 'basic_...
delete
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x62 x58 x11 x43 x34 x34 x55 x55 x8 x41 x29 x46 x14 x50 x40 x20 x25 x64 x3 x56 x13 x1 x59 x41 x59 x50 x5 x56 x32 x11 x43 x23 (TARGET) x20
x62 x58 x11 x43 x34 x34 x55 x55 x8 x41 x29 x46 x14 x50 x40 x25 x64 x3 x56 x13 x1 x59 x41 x59 x50 x5 x56 x32 x11 x43 x23
{'task': 'delete', 'seq': [['x62', 'x58', 'x11', 'x43', 'x34', 'x34', 'x55', 'x55', 'x8', 'x41', 'x29', 'x46', 'x14', 'x50', 'x40', 'x20', 'x25', 'x64', 'x3', 'x56', 'x13', 'x1', 'x59', 'x41', 'x59', 'x50', 'x5', 'x56', 'x32', 'x11', 'x43', 'x23'], 'x20'], 'k': 4, 'n': 32, '_time': 0.0002868175506591797, '_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 x22; PUSH x12; PUSH x59; PUSH x47; POP; POP; PUSH x48; PUSH x43; PUSH x36; PUSH x2; POP; POP; PUSH x58; PUSH x54; POP; PUSH x32; PUSH x55; PUSH x58; PUSH ...
x12 x22
{'task': 'stack', 'seq': ['PUSH x22', 'PUSH x12', 'PUSH x59', 'PUSH x47', 'POP', 'POP', 'PUSH x48', 'PUSH x43', 'PUSH x36', 'PUSH x2', 'POP', 'POP', 'PUSH x58', 'PUSH x54', 'POP', 'PUSH x32', 'PUSH x55', 'PUSH x58', 'PUSH x11', 'PUSH x8', 'POP', 'PUSH x44', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'PUSH ...
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 c1 o0 o1 o0 o3 o1 o1 o0 c3 c0 c1 o2 c1 c0 o0 c0 o3 c1 o1 o3 c3 o3 o1 o0 c1 c1 c3 c2 c0 c0 c3
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00029587745666503906, '_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) x9 x61 x39 x23 x41 x57 x63 x20 x21 x16 x4 x62 x25 x46 x27 x23 x29 x49 x11 x56 x44 x29 x21 x2 x51 x22 x62 x15 x43 x61 x32 x24
x24 x32 x61 x43 x15 x62 x22 x51 x2 x21 x29 x44 x56 x11 x49 x29 x23 x27 x46 x25 x62 x4 x16 x21 x20 x63 x57 x41 x23 x39 x61 x9
{'task': 'reverse', 'seq': ['x9', 'x61', 'x39', 'x23', 'x41', 'x57', 'x63', 'x20', 'x21', 'x16', 'x4', 'x62', 'x25', 'x46', 'x27', 'x23', 'x29', 'x49', 'x11', 'x56', 'x44', 'x29', 'x21', 'x2', 'x51', 'x22', 'x62', 'x15', 'x43', 'x61', 'x32', 'x24'], 'k': 4, 'n': 32, '_time': 0.00041747093200683594, '_task': 'basic_proc...
reverse
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x10 x44 x4 x57 x5 x58 x19 x12 x44 x55 x45 x61 x12 x28 x64 x29 x56 x62 x18 x46 x48 x17 x31 x50 x12 x41 x30 x54 x41 x60 x5 x29
x10 x44 x4 x57 x5 x58 x19 x12 x55 x45 x61 x28 x64 x29 x56 x62 x18 x46 x48 x17 x31 x50 x41 x30 x54 x60
{'task': 'set', 'seq': ['x10', 'x44', 'x4', 'x57', 'x5', 'x58', 'x19', 'x12', 'x44', 'x55', 'x45', 'x61', 'x12', 'x28', 'x64', 'x29', 'x56', 'x62', 'x18', 'x46', 'x48', 'x17', 'x31', 'x50', 'x12', 'x41', 'x30', 'x54', 'x41', 'x60', 'x5', 'x29'], 'k': 4, 'n': 32, '_time': 0.00027823448181152344, '_task': 'basic_procedur...
set
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x24 x11 x44 x11 x37 x9 x32 x51 x16 x22 x38 x58 x62 x23 x22 x41 x16 x48 x23 x36 x33 x4 x28 x7 x31 x34 x51 x8 x8 x44 x7 x27
x4 x7 x7 x8 x8 x9 x11 x11 x16 x16 x22 x22 x23 x23 x24 x27 x28 x31 x32 x33 x34 x36 x37 x38 x41 x44 x44 x48 x51 x51 x58 x62
{'task': 'sort', 'seq': ['x24', 'x11', 'x44', 'x11', 'x37', 'x9', 'x32', 'x51', 'x16', 'x22', 'x38', 'x58', 'x62', 'x23', 'x22', 'x41', 'x16', 'x48', 'x23', 'x36', 'x33', 'x4', 'x28', 'x7', 'x31', 'x34', 'x51', 'x8', 'x8', 'x44', 'x7', 'x27'], 'k': 4, 'n': 32, '_time': 0.00043463706970214844, '_task': 'basic_procedural...
sort
instruct
0
Copy the sequence exactly. (SEQUENCE) x18 x2 x26 x56 x45 x26 x24 x47 x62 x30 x4 x17 x12 x29 x57 x11 x25 x14 x14 x36 x35 x46 x29 x42 x54 x15 x15 x12 x2 x50 x38 x8
x18 x2 x26 x56 x45 x26 x24 x47 x62 x30 x4 x17 x12 x29 x57 x11 x25 x14 x14 x36 x35 x46 x29 x42 x54 x15 x15 x12 x2 x50 x38 x8
{'task': 'identity', 'seq': ['x18', 'x2', 'x26', 'x56', 'x45', 'x26', 'x24', 'x47', 'x62', 'x30', 'x4', 'x17', 'x12', 'x29', 'x57', 'x11', 'x25', 'x14', 'x14', 'x36', 'x35', 'x46', 'x29', 'x42', 'x54', 'x15', 'x15', 'x12', 'x2', 'x50', 'x38', 'x8'], 'k': 4, 'n': 32, '_time': 0.00027179718017578125, '_task': 'basic_proc...
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 x44 x32 x27 x22 x4 x37 x3 x2 x13 x54 x6 x3 x10 x24 x61 (B) x53 x56 x42 x64 x12 x42 x49 x35 x54 x24 x46 x18 x11 x61 x41 x29
x26 x44 x32 x27 x22 x4 x37 x3 x2 x13 x54 x6 x10 x24 x61 x53 x56 x42 x64 x12 x49 x35 x46 x18 x11 x41 x29
{'task': 'union', 'seq': [['x26', 'x44', 'x32', 'x27', 'x22', 'x4', 'x37', 'x3', 'x2', 'x13', 'x54', 'x6', 'x3', 'x10', 'x24', 'x61'], ['x53', 'x56', 'x42', 'x64', 'x12', 'x42', 'x49', 'x35', 'x54', 'x24', 'x46', 'x18', 'x11', 'x61', 'x41', 'x29']], 'k': 4, 'n': 32, '_time': 0.0002694129943847656, '_task': 'basic_proce...
union
instruct
0
Copy the sequence exactly. (SEQUENCE) x46 x31 x63 x15 x32 x44 x42 x7 x52 x61 x5 x64 x18 x61 x58 x31 x38 x26 x8 x55 x13 x57 x48 x60 x24 x1 x57 x8 x43 x23 x59 x53
x46 x31 x63 x15 x32 x44 x42 x7 x52 x61 x5 x64 x18 x61 x58 x31 x38 x26 x8 x55 x13 x57 x48 x60 x24 x1 x57 x8 x43 x23 x59 x53
{'task': 'identity', 'seq': ['x46', 'x31', 'x63', 'x15', 'x32', 'x44', 'x42', 'x7', 'x52', 'x61', 'x5', 'x64', 'x18', 'x61', 'x58', 'x31', 'x38', 'x26', 'x8', 'x55', 'x13', 'x57', 'x48', 'x60', 'x24', 'x1', 'x57', 'x8', 'x43', 'x23', 'x59', 'x53'], 'k': 4, 'n': 32, '_time': 0.00027108192443847656, '_task': 'basic_proce...
identity
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x43 x25 x58 x62 x21 x33 x2 x1 x50 x5 x51 x47 x8 x21 x37 x27 x57 x42 x29 x40 x15 x46 x39 x51 x9 x39 x33 x16 x13 x52 x42 x51 (TARGET) x35
x43 x25 x58 x62 x21 x33 x2 x1 x50 x5 x51 x47 x8 x21 x37 x27 x57 x42 x29 x40 x15 x46 x39 x51 x9 x39 x33 x16 x13 x52 x42 x51
{'task': 'delete', 'seq': [['x43', 'x25', 'x58', 'x62', 'x21', 'x33', 'x2', 'x1', 'x50', 'x5', 'x51', 'x47', 'x8', 'x21', 'x37', 'x27', 'x57', 'x42', 'x29', 'x40', 'x15', 'x46', 'x39', 'x51', 'x9', 'x39', 'x33', 'x16', 'x13', 'x52', 'x42', 'x51'], 'x35'], 'k': 4, 'n': 32, '_time': 0.0004584789276123047, '_task': 'basic...
delete
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x4 x53 x38 x13 x29 x43 x53 x32 x48 x19 x19 x7 x29 x9 x11 x9 x62 x64 x2 x25 x12 x6 x16 x24 x50 x59 x43 x53 x50 x9 x54 x60
x4 x53 x38 x13 x29 x43 x32 x48 x19 x7 x9 x11 x62 x64 x2 x25 x12 x6 x16 x24 x50 x59 x54 x60
{'task': 'set', 'seq': ['x4', 'x53', 'x38', 'x13', 'x29', 'x43', 'x53', 'x32', 'x48', 'x19', 'x19', 'x7', 'x29', 'x9', 'x11', 'x9', 'x62', 'x64', 'x2', 'x25', 'x12', 'x6', 'x16', 'x24', 'x50', 'x59', 'x43', 'x53', 'x50', 'x9', 'x54', 'x60'], 'k': 4, 'n': 32, '_time': 0.0002765655517578125, '_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 x41; POP; PUSH x50; PUSH x24; PUSH x4; PUSH x18; PUSH x34; PUSH x18; POP; PUSH x49; PUSH x63; PUSH x55; PUSH x14; POP; PUSH x52; PUSH x1; PUSH x42; PUSH x...
x49 x34 x18 x4 x24 x50
{'task': 'stack', 'seq': ['PUSH x41', 'POP', 'PUSH x50', 'PUSH x24', 'PUSH x4', 'PUSH x18', 'PUSH x34', 'PUSH x18', 'POP', 'PUSH x49', 'PUSH x63', 'PUSH x55', 'PUSH x14', 'POP', 'PUSH x52', 'PUSH x1', 'PUSH x42', 'PUSH x33', 'PUSH x59', 'PUSH x20', 'PUSH x60', 'PUSH x45', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP'...
stack
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x29 x31 x25 x14 x27 x6 x18 x36 x17 x20 x18 x1 x58 x33 x37 x17 x33 x3 x47 x45 x47 x39 x34 x34 x49 x21 x42 x15 x63 x63 x24 x8 (TARGET) x47
x29 x31 x25 x14 x27 x6 x18 x36 x17 x20 x18 x1 x58 x33 x37 x17 x33 x3 x45 x47 x39 x34 x34 x49 x21 x42 x15 x63 x63 x24 x8
{'task': 'delete', 'seq': [['x29', 'x31', 'x25', 'x14', 'x27', 'x6', 'x18', 'x36', 'x17', 'x20', 'x18', 'x1', 'x58', 'x33', 'x37', 'x17', 'x33', 'x3', 'x47', 'x45', 'x47', 'x39', 'x34', 'x34', 'x49', 'x21', 'x42', 'x15', 'x63', 'x63', 'x24', 'x8'], 'x47'], 'k': 4, 'n': 32, '_time': 0.0002932548522949219, '_task': 'basi...
delete
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x41 x41 x9 x63 x62 x13 x52 x47 x23 x24 x57 x8 x41 x26 x42 x8 x46 x22 x7 x56 x55 x62 x45 x24 x37 x64 x25 x51 x47 x43 x52 x48 (TARGET) x15
x41 x41 x9 x63 x62 x13 x52 x47 x23 x24 x57 x8 x41 x26 x42 x8 x46 x22 x7 x56 x55 x62 x45 x24 x37 x64 x25 x51 x47 x43 x52 x48
{'task': 'delete', 'seq': [['x41', 'x41', 'x9', 'x63', 'x62', 'x13', 'x52', 'x47', 'x23', 'x24', 'x57', 'x8', 'x41', 'x26', 'x42', 'x8', 'x46', 'x22', 'x7', 'x56', 'x55', 'x62', 'x45', 'x24', 'x37', 'x64', 'x25', 'x51', 'x47', 'x43', 'x52', 'x48'], 'x15'], 'k': 4, 'n': 32, '_time': 0.0004622936248779297, '_task': 'basi...
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 o3 c3 o3 c2 c3 o2 c2 c3 o0 c0 o2 o1 o0 c1 o3 o0 o2 c0 c0 c2 c2 c3 o2 o1 o0 c0 c1 o3 c2 c3
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002753734588623047, '_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) x56 x36 x21 x59 x33 x23 x31 x61 x38 x43 x41 x51 x60 x42 x40 x42 x3 x9 x57 x11 x61 x18 x46 x31 x33 x28 x22 x40 x34 x47 x9 x64
x64 x9 x47 x34 x40 x22 x28 x33 x31 x46 x18 x61 x11 x57 x9 x3 x42 x40 x42 x60 x51 x41 x43 x38 x61 x31 x23 x33 x59 x21 x36 x56
{'task': 'reverse', 'seq': ['x56', 'x36', 'x21', 'x59', 'x33', 'x23', 'x31', 'x61', 'x38', 'x43', 'x41', 'x51', 'x60', 'x42', 'x40', 'x42', 'x3', 'x9', 'x57', 'x11', 'x61', 'x18', 'x46', 'x31', 'x33', 'x28', 'x22', 'x40', 'x34', 'x47', 'x9', 'x64'], 'k': 4, 'n': 32, '_time': 0.0004100799560546875, '_task': 'basic_proce...
reverse
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 o3 o3 o1 o2 c2 o2 c3 c3 o3 o2 o2 o2 o2 o2 c3 o2 o3 c3 c1 o2 o3 c2 c2 c2 c3 c2 c1 c2 c2 c2 c2
{'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002949237823486328, '_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) x46 x31 x20 x35 x21 x30 x57 x37 x27 x14 x15 x49 x36 x44 x50 x6 x57 x55 x33 x33 x26 x10 x45 x29 x39 x3 x31 x52 x61 x28 x8 x56
x46 x31 x20 x35 x21 x30 x57 x37 x27 x14 x15 x49 x36 x44 x50 x6 x55 x33 x26 x10 x45 x29 x39 x3 x52 x61 x28 x8 x56
{'task': 'set', 'seq': ['x46', 'x31', 'x20', 'x35', 'x21', 'x30', 'x57', 'x37', 'x27', 'x14', 'x15', 'x49', 'x36', 'x44', 'x50', 'x6', 'x57', 'x55', 'x33', 'x33', 'x26', 'x10', 'x45', 'x29', 'x39', 'x3', 'x31', 'x52', 'x61', 'x28', 'x8', 'x56'], 'k': 4, 'n': 32, '_time': 0.0004215240478515625, '_task': 'basic_procedura...
set
instruct
0
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged. (SEQUENCE) x34 x42 x8 x10 x35 x52 x37 x32 x48 x50 x53 x26 x4 x1 x17 x36 x23 x64 x34 x44 x44 x2 x35 x34 x12 x30 x55 x24 x37 x21 x55 x21 (TARGET) x12
x34 x42 x8 x10 x35 x52 x37 x32 x48 x50 x53 x26 x4 x1 x17 x36 x23 x64 x34 x44 x44 x2 x35 x34 x30 x55 x24 x37 x21 x55 x21
{'task': 'delete', 'seq': [['x34', 'x42', 'x8', 'x10', 'x35', 'x52', 'x37', 'x32', 'x48', 'x50', 'x53', 'x26', 'x4', 'x1', 'x17', 'x36', 'x23', 'x64', 'x34', 'x44', 'x44', 'x2', 'x35', 'x34', 'x12', 'x30', 'x55', 'x24', 'x37', 'x21', 'x55', 'x21'], 'x12'], 'k': 4, 'n': 32, '_time': 0.0003955364227294922, '_task': 'basi...
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 o3 o2 c2 c3 c2 o1 c1 o3 o3 c3 o0 o2 o1 c1 c2 o3 c3 c0 o1 c1 o3 o1 c1 o3 c3 o2 o0 c0 c2 c3 c3
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00025391578674316406, '_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
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 x39; POP; PUSH x27; PUSH x53; PUSH x29; PUSH x48; PUSH x33; PUSH x62; POP; PUSH x8; PUSH x8; PUSH x16; PUSH x20; PUSH x13; PUSH x44; PUSH x19; PUSH x41; P...
x48 x29 x53 x27
{'task': 'stack', 'seq': ['PUSH x39', 'POP', 'PUSH x27', 'PUSH x53', 'PUSH x29', 'PUSH x48', 'PUSH x33', 'PUSH x62', 'POP', 'PUSH x8', 'PUSH x8', 'PUSH x16', 'PUSH x20', 'PUSH x13', 'PUSH x44', 'PUSH x19', 'PUSH x41', 'POP', 'POP', 'PUSH x40', 'POP', 'POP', 'POP', 'POP', 'PUSH x54', 'POP', 'POP', 'POP', 'POP', 'PUSH x2...
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.
o0 c0 o2 o1 c1 o3 c3 c2 o3 c3 o0 c0 o2 o1 o0 o0 o0 c0 o1 o0 o0 o1 c1 c0 c0 o3 c3 c1 c0 c0 c1 c2
{'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00038170814514160156, '_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) x64 x52 x30 x2 x13 x29 x56 x17 x51 x2 x7 x16 x12 x1 x55 x16 x12 x13 x33 x59 x28 x2 x56 x40 x55 x37 x3 x23 x46 x9 x56 x42
x64 x52 x30 x2 x13 x29 x56 x17 x51 x7 x16 x12 x1 x55 x33 x59 x28 x40 x37 x3 x23 x46 x9 x42
{'task': 'set', 'seq': ['x64', 'x52', 'x30', 'x2', 'x13', 'x29', 'x56', 'x17', 'x51', 'x2', 'x7', 'x16', 'x12', 'x1', 'x55', 'x16', 'x12', 'x13', 'x33', 'x59', 'x28', 'x2', 'x56', 'x40', 'x55', 'x37', 'x3', 'x23', 'x46', 'x9', 'x56', 'x42'], 'k': 4, 'n': 32, '_time': 0.0004162788391113281, '_task': 'basic_procedural', ...
set
instruct
0
Sort the sequence in ascending numeric order, where x2 < x10. (SEQUENCE) x30 x59 x33 x21 x5 x40 x52 x21 x17 x42 x34 x19 x58 x13 x23 x63 x3 x41 x33 x50 x1 x53 x64 x33 x61 x28 x49 x14 x21 x45 x59 x27
x1 x3 x5 x13 x14 x17 x19 x21 x21 x21 x23 x27 x28 x30 x33 x33 x33 x34 x40 x41 x42 x45 x49 x50 x52 x53 x58 x59 x59 x61 x63 x64
{'task': 'sort', 'seq': ['x30', 'x59', 'x33', 'x21', 'x5', 'x40', 'x52', 'x21', 'x17', 'x42', 'x34', 'x19', 'x58', 'x13', 'x23', 'x63', 'x3', 'x41', 'x33', 'x50', 'x1', 'x53', 'x64', 'x33', 'x61', 'x28', 'x49', 'x14', 'x21', 'x45', 'x59', 'x27'], 'k': 4, 'n': 32, '_time': 0.00028586387634277344, '_task': 'basic_procedu...
sort
instruct
0
Return the unique elements of the sequence in order of first appearance. (SEQUENCE) x31 x30 x26 x12 x63 x46 x28 x54 x28 x30 x37 x17 x16 x62 x27 x5 x43 x53 x36 x61 x11 x30 x43 x61 x45 x59 x9 x51 x36 x3 x2 x31
x31 x30 x26 x12 x63 x46 x28 x54 x37 x17 x16 x62 x27 x5 x43 x53 x36 x61 x11 x45 x59 x9 x51 x3 x2
{'task': 'set', 'seq': ['x31', 'x30', 'x26', 'x12', 'x63', 'x46', 'x28', 'x54', 'x28', 'x30', 'x37', 'x17', 'x16', 'x62', 'x27', 'x5', 'x43', 'x53', 'x36', 'x61', 'x11', 'x30', 'x43', 'x61', 'x45', 'x59', 'x9', 'x51', 'x36', 'x3', 'x2', 'x31'], 'k': 4, 'n': 32, '_time': 0.00028204917907714844, '_task': 'basic_procedura...
set
instruct
0