prompt stringlengths 144 465 | answer stringlengths 5 127 | metadata stringlengths 308 686 | task stringclasses 9
values | mode stringclasses 1
value | level int64 0 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 o0 o3 c3 o3 o1 o3 o3 c3 c3 c1 c3 o3 c3 c0 o2 o2 c2 c2 o3 c3 o1 o0 c0 o2 c2 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 |
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 x61; PUSH x24; PUSH x30; PUSH x47; POP; PUSH x5; PUSH x9; PUSH x57; PUSH x46; PUSH x52; PUSH x41; PUSH x37; PUSH x8; POP; PUSH x64; PUSH x45; PUSH x17; PO... | x5 x30 x24 x61 | {'task': 'stack', 'seq': ['PUSH x61', 'PUSH x24', 'PUSH x30', 'PUSH x47', 'POP', 'PUSH x5', 'PUSH x9', 'PUSH x57', 'PUSH x46', 'PUSH x52', 'PUSH x41', 'PUSH x37', 'PUSH x8', 'POP', 'PUSH x64', 'PUSH x45', 'PUSH x17', 'POP', 'PUSH x41', 'PUSH x22', 'PUSH x30', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP... | 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)
x29 x9 x45 x58 x33 x12 x30 x14 x34 x42 x18 x49 x1 x60 x59 x22
(B)
x16 x41 x61 x11 x15 x19 x28 x50 x58 x53 x60 x26 x25 x17 x43 x31 | x29 x9 x45 x58 x33 x12 x30 x14 x34 x42 x18 x49 x1 x60 x59 x22 x16 x41 x61 x11 x15 x19 x28 x50 x53 x26 x25 x17 x43 x31 | {'task': 'union', 'seq': [['x29', 'x9', 'x45', 'x58', 'x33', 'x12', 'x30', 'x14', 'x34', 'x42', 'x18', 'x49', 'x1', 'x60', 'x59', 'x22'], ['x16', 'x41', 'x61', 'x11', 'x15', 'x19', 'x28', 'x50', 'x58', 'x53', 'x60', 'x26', 'x25', 'x17', 'x43', 'x31']], 'k': 4, 'n': 32, '_time': 0.0004558563232421875, '_task': 'basic_pr... | union | instruct | 0 |
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B.
(A)
x14 x45 x26 x5 x19 x33 x1 x39 x37 x51 x7 x43 x29 x43 x63 x26
(B)
x24 x57 x38 x57 x29 x24 x43 x55 x39 x22 x32 x20 x17 x43 x51 x16 | x14 x45 x26 x5 x19 x33 x1 x39 x37 x51 x7 x43 x29 x63 x24 x57 x38 x55 x22 x32 x20 x17 x16 | {'task': 'union', 'seq': [['x14', 'x45', 'x26', 'x5', 'x19', 'x33', 'x1', 'x39', 'x37', 'x51', 'x7', 'x43', 'x29', 'x43', 'x63', 'x26'], ['x24', 'x57', 'x38', 'x57', 'x29', 'x24', 'x43', 'x55', 'x39', 'x22', 'x32', 'x20', 'x17', 'x43', 'x51', 'x16']], 'k': 4, 'n': 32, '_time': 0.0004477500915527344, '_task': 'basic_pro... | union | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x37 x39 x27 x23 x3 x8 x7 x64 x1 x40 x35 x19 x17 x22 x35 x52 x13 x1 x32 x31 x51 x33 x12 x41 x15 x60 x63 x1 x44 x35 x61 x56
(TARGET)
x8 | x37 x39 x27 x23 x3 x7 x64 x1 x40 x35 x19 x17 x22 x35 x52 x13 x1 x32 x31 x51 x33 x12 x41 x15 x60 x63 x1 x44 x35 x61 x56 | {'task': 'delete', 'seq': [['x37', 'x39', 'x27', 'x23', 'x3', 'x8', 'x7', 'x64', 'x1', 'x40', 'x35', 'x19', 'x17', 'x22', 'x35', 'x52', 'x13', 'x1', 'x32', 'x31', 'x51', 'x33', 'x12', 'x41', 'x15', 'x60', 'x63', 'x1', 'x44', 'x35', 'x61', 'x56'], 'x8'], 'k': 4, 'n': 32, '_time': 0.00028824806213378906, '_task': 'basic_... | delete | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x41 x35 x17 x36 x39 x56 x5 x61 x16 x62 x21 x14 x5 x34 x4 x20 x20 x34 x49 x1 x63 x30 x34 x61 x17 x36 x12 x35 x56 x45 x22 x46 | x41 x35 x17 x36 x39 x56 x5 x61 x16 x62 x21 x14 x5 x34 x4 x20 x20 x34 x49 x1 x63 x30 x34 x61 x17 x36 x12 x35 x56 x45 x22 x46 | {'task': 'identity', 'seq': ['x41', 'x35', 'x17', 'x36', 'x39', 'x56', 'x5', 'x61', 'x16', 'x62', 'x21', 'x14', 'x5', 'x34', 'x4', 'x20', 'x20', 'x34', 'x49', 'x1', 'x63', 'x30', 'x34', 'x61', 'x17', 'x36', 'x12', 'x35', 'x56', 'x45', 'x22', 'x46'], 'k': 4, 'n': 32, '_time': 0.0003058910369873047, '_task': 'basic_proce... | identity | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x11 x14 x30 x1 x5 x14 x23 x2 x11 x64 x6 x60 x9 x24 x38 x41 x50 x37 x13 x12 x55 x54 x36 x22 x50 x64 x49 x55 x58 x18 x42 x6 | x6 x42 x18 x58 x55 x49 x64 x50 x22 x36 x54 x55 x12 x13 x37 x50 x41 x38 x24 x9 x60 x6 x64 x11 x2 x23 x14 x5 x1 x30 x14 x11 | {'task': 'reverse', 'seq': ['x11', 'x14', 'x30', 'x1', 'x5', 'x14', 'x23', 'x2', 'x11', 'x64', 'x6', 'x60', 'x9', 'x24', 'x38', 'x41', 'x50', 'x37', 'x13', 'x12', 'x55', 'x54', 'x36', 'x22', 'x50', 'x64', 'x49', 'x55', 'x58', 'x18', 'x42', 'x6'], 'k': 4, 'n': 32, '_time': 0.00041604042053222656, '_task': 'basic_procedu... | 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 c1 o1 c1 o3 c3 o0 o1 c1 c0 o0 o1 c1 o1 c1 c0 o1 o1 o2 c2 o2 o1 o1 c1 o0 o2 c0 c1 c1 c2 c1 c2 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00029850006103515625, '_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 x13 x27 x49 x25 x37 x18 x2 x46 x26 x28 x21 x21 x16 x1 x2
(B)
x7 x55 x11 x55 x39 x40 x9 x36 x2 x35 x4 x28 x13 x64 x27 x5 | x59 x13 x27 x49 x25 x37 x18 x2 x46 x26 x28 x21 x16 x1 x7 x55 x11 x39 x40 x9 x36 x35 x4 x64 x5 | {'task': 'union', 'seq': [['x59', 'x13', 'x27', 'x49', 'x25', 'x37', 'x18', 'x2', 'x46', 'x26', 'x28', 'x21', 'x21', 'x16', 'x1', 'x2'], ['x7', 'x55', 'x11', 'x55', 'x39', 'x40', 'x9', 'x36', 'x2', 'x35', 'x4', 'x28', 'x13', 'x64', 'x27', 'x5']], 'k': 4, 'n': 32, '_time': 0.0004508495330810547, '_task': 'basic_procedur... | union | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x46 x47 x44 x49 x50 x35 x3 x5 x31 x38 x44 x9 x32 x59 x49 x41 x36 x62 x34 x30 x1 x30 x21 x62 x52 x45 x47 x18 x60 x63 x33 x21 | x1 x3 x5 x9 x18 x21 x21 x30 x30 x31 x32 x33 x34 x35 x36 x38 x41 x44 x44 x45 x46 x47 x47 x49 x49 x50 x52 x59 x60 x62 x62 x63 | {'task': 'sort', 'seq': ['x46', 'x47', 'x44', 'x49', 'x50', 'x35', 'x3', 'x5', 'x31', 'x38', 'x44', 'x9', 'x32', 'x59', 'x49', 'x41', 'x36', 'x62', 'x34', 'x30', 'x1', 'x30', 'x21', 'x62', 'x52', 'x45', 'x47', 'x18', 'x60', 'x63', 'x33', 'x21'], 'k': 4, 'n': 32, '_time': 0.0003228187561035156, '_task': 'basic_procedura... | sort | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x35 x36 x55 x14 x44 x3 x64 x7 x51 x7 x41 x18 x16 x62 x62 x44 x44 x18 x22 x44 x14 x51 x25 x8 x13 x58 x54 x60 x26 x24 x16 x62
(TARGET)
x36 | x35 x55 x14 x44 x3 x64 x7 x51 x7 x41 x18 x16 x62 x62 x44 x44 x18 x22 x44 x14 x51 x25 x8 x13 x58 x54 x60 x26 x24 x16 x62 | {'task': 'delete', 'seq': [['x35', 'x36', 'x55', 'x14', 'x44', 'x3', 'x64', 'x7', 'x51', 'x7', 'x41', 'x18', 'x16', 'x62', 'x62', 'x44', 'x44', 'x18', 'x22', 'x44', 'x14', 'x51', 'x25', 'x8', 'x13', 'x58', 'x54', 'x60', 'x26', 'x24', 'x16', 'x62'], 'x36'], 'k': 4, 'n': 32, '_time': 0.0002875328063964844, '_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 x19; PUSH x31; POP; PUSH x57; PUSH x11; PUSH x4; POP; POP; POP; PUSH x58; PUSH x30; POP; PUSH x33; POP; PUSH x43; PUSH x37; PUSH x17; PUSH x5; POP; POP; P... | x58 x19 | {'task': 'stack', 'seq': ['PUSH x19', 'PUSH x31', 'POP', 'PUSH x57', 'PUSH x11', 'PUSH x4', 'POP', 'POP', 'POP', 'PUSH x58', 'PUSH x30', 'POP', 'PUSH x33', 'POP', 'PUSH x43', 'PUSH x37', 'PUSH x17', 'PUSH x5', 'POP', 'POP', 'POP', 'PUSH x27', 'POP', 'POP', 'PUSH x47', 'POP', 'POP', 'PUSH x15', 'POP', 'PUSH x58', '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. | o0 c0 o3 o1 c3 o3 c1 o0 c3 c0 o3 o2 o3 o3 o3 c3 c2 c3 c3 c3 o1 o1 c1 o3 o2 c1 c2 o1 c1 o1 c3 c1 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0004515647888183594, '_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)
x41 x51 x14 x59 x25 x18 x9 x55 x5 x55 x55 x37 x60 x12 x41 x23 x10 x46 x45 x33 x9 x57 x56 x19 x26 x3 x24 x31 x43 x49 x44 x21 | x21 x44 x49 x43 x31 x24 x3 x26 x19 x56 x57 x9 x33 x45 x46 x10 x23 x41 x12 x60 x37 x55 x55 x5 x55 x9 x18 x25 x59 x14 x51 x41 | {'task': 'reverse', 'seq': ['x41', 'x51', 'x14', 'x59', 'x25', 'x18', 'x9', 'x55', 'x5', 'x55', 'x55', 'x37', 'x60', 'x12', 'x41', 'x23', 'x10', 'x46', 'x45', 'x33', 'x9', 'x57', 'x56', 'x19', 'x26', 'x3', 'x24', 'x31', 'x43', 'x49', 'x44', 'x21'], 'k': 4, 'n': 32, '_time': 0.00024437904357910156, '_task': 'basic_proce... | 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 x49; POP; PUSH x12; PUSH x1; PUSH x20; POP; PUSH x24; PUSH x28; POP; POP; PUSH x39; PUSH x58; PUSH x46; PUSH x48; PUSH x55; PUSH x2; PUSH x63; PUSH x33; P... | x2 x55 x48 x46 x58 x39 x1 x12 | {'task': 'stack', 'seq': ['PUSH x49', 'POP', 'PUSH x12', 'PUSH x1', 'PUSH x20', 'POP', 'PUSH x24', 'PUSH x28', 'POP', 'POP', 'PUSH x39', 'PUSH x58', 'PUSH x46', 'PUSH x48', 'PUSH x55', 'PUSH x2', 'PUSH x63', 'PUSH x33', 'PUSH x10', 'PUSH x57', 'PUSH x31', 'PUSH x55', 'PUSH x14', 'POP', 'POP', 'POP', 'POP', 'POP', 'PUSH... | 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)
x38 x31 x45 x40 x24 x17 x44 x58 x52 x18 x39 x51 x62 x62 x46 x48
(B)
x46 x27 x58 x33 x26 x59 x37 x49 x15 x49 x7 x63 x29 x16 x61 x53 | x38 x31 x45 x40 x24 x17 x44 x58 x52 x18 x39 x51 x62 x46 x48 x27 x33 x26 x59 x37 x49 x15 x7 x63 x29 x16 x61 x53 | {'task': 'union', 'seq': [['x38', 'x31', 'x45', 'x40', 'x24', 'x17', 'x44', 'x58', 'x52', 'x18', 'x39', 'x51', 'x62', 'x62', 'x46', 'x48'], ['x46', 'x27', 'x58', 'x33', 'x26', 'x59', 'x37', 'x49', 'x15', 'x49', 'x7', 'x63', 'x29', 'x16', 'x61', 'x53']], 'k': 4, 'n': 32, '_time': 0.00029969215393066406, '_task': 'basic_... | 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. | o0 c0 o2 c2 o1 o0 o2 o2 c0 o1 c2 c2 o3 o0 o3 c1 c0 o1 o3 o2 o2 o2 o1 c3 c3 c2 c3 c2 c1 c1 c2 c1 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00045609474182128906, '_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)
x44 x7 x37 x8 x30 x61 x50 x55 x28 x60 x36 x16 x36 x37 x56 x10 x41 x47 x55 x62 x3 x33 x43 x32 x32 x8 x54 x33 x29 x41 x39 x56 | x44 x7 x37 x8 x30 x61 x50 x55 x28 x60 x36 x16 x56 x10 x41 x47 x62 x3 x33 x43 x32 x54 x29 x39 | {'task': 'set', 'seq': ['x44', 'x7', 'x37', 'x8', 'x30', 'x61', 'x50', 'x55', 'x28', 'x60', 'x36', 'x16', 'x36', 'x37', 'x56', 'x10', 'x41', 'x47', 'x55', 'x62', 'x3', 'x33', 'x43', 'x32', 'x32', 'x8', 'x54', 'x33', 'x29', 'x41', 'x39', 'x56'], 'k': 4, 'n': 32, '_time': 0.00042557716369628906, '_task': 'basic_procedura... | set | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x31 x11 x17 x42 x29 x35 x11 x26 x52 x11 x23 x35 x3 x52 x24 x39 x53 x19 x56 x7 x41 x16 x25 x64 x28 x33 x17 x40 x10 x9 x51 x31 | x31 x11 x17 x42 x29 x35 x11 x26 x52 x11 x23 x35 x3 x52 x24 x39 x53 x19 x56 x7 x41 x16 x25 x64 x28 x33 x17 x40 x10 x9 x51 x31 | {'task': 'identity', 'seq': ['x31', 'x11', 'x17', 'x42', 'x29', 'x35', 'x11', 'x26', 'x52', 'x11', 'x23', 'x35', 'x3', 'x52', 'x24', 'x39', 'x53', 'x19', 'x56', 'x7', 'x41', 'x16', 'x25', 'x64', 'x28', 'x33', 'x17', 'x40', 'x10', 'x9', 'x51', 'x31'], 'k': 4, 'n': 32, '_time': 0.0002715587615966797, '_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)
x57 x5 x21 x5 x28 x24 x16 x39 x52 x3 x22 x27 x25 x46 x23 x47
(B)
x6 x53 x19 x18 x32 x20 x17 x53 x48 x14 x35 x3 x33 x23 x62 x23 | x57 x5 x21 x28 x24 x16 x39 x52 x3 x22 x27 x25 x46 x23 x47 x6 x53 x19 x18 x32 x20 x17 x48 x14 x35 x33 x62 | {'task': 'union', 'seq': [['x57', 'x5', 'x21', 'x5', 'x28', 'x24', 'x16', 'x39', 'x52', 'x3', 'x22', 'x27', 'x25', 'x46', 'x23', 'x47'], ['x6', 'x53', 'x19', 'x18', 'x32', 'x20', 'x17', 'x53', 'x48', 'x14', 'x35', 'x3', 'x33', 'x23', 'x62', 'x23']], 'k': 4, 'n': 32, '_time': 0.0002999305725097656, '_task': 'basic_proce... | union | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x48 x4 x22 x49 x36 x49 x37 x50 x41 x11 x20 x59 x44 x5 x20 x40 x17 x29 x32 x2 x34 x43 x57 x2 x45 x35 x27 x12 x48 x10 x5 x39 | x39 x5 x10 x48 x12 x27 x35 x45 x2 x57 x43 x34 x2 x32 x29 x17 x40 x20 x5 x44 x59 x20 x11 x41 x50 x37 x49 x36 x49 x22 x4 x48 | {'task': 'reverse', 'seq': ['x48', 'x4', 'x22', 'x49', 'x36', 'x49', 'x37', 'x50', 'x41', 'x11', 'x20', 'x59', 'x44', 'x5', 'x20', 'x40', 'x17', 'x29', 'x32', 'x2', 'x34', 'x43', 'x57', 'x2', 'x45', 'x35', 'x27', 'x12', 'x48', 'x10', 'x5', 'x39'], 'k': 4, 'n': 32, '_time': 0.0004124641418457031, '_task': 'basic_procedu... | reverse | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x35 x11 x33 x1 x53 x57 x23 x1 x38 x38 x23 x2 x43 x59 x41 x31 x24 x20 x22 x37 x41 x52 x40 x16 x53 x55 x41 x42 x27 x3 x22 x5 | x35 x11 x33 x1 x53 x57 x23 x1 x38 x38 x23 x2 x43 x59 x41 x31 x24 x20 x22 x37 x41 x52 x40 x16 x53 x55 x41 x42 x27 x3 x22 x5 | {'task': 'identity', 'seq': ['x35', 'x11', 'x33', 'x1', 'x53', 'x57', 'x23', 'x1', 'x38', 'x38', 'x23', 'x2', 'x43', 'x59', 'x41', 'x31', 'x24', 'x20', 'x22', 'x37', 'x41', 'x52', 'x40', 'x16', 'x53', 'x55', 'x41', 'x42', 'x27', 'x3', 'x22', 'x5'], 'k': 4, 'n': 32, '_time': 0.0002791881561279297, '_task': 'basic_proced... | identity | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x58 x6 x10 x50 x51 x49 x37 x29 x1 x38 x5 x25 x57 x9 x55 x38 x12 x21 x36 x37 x11 x57 x30 x49 x57 x7 x30 x47 x33 x32 x1 x25 | x25 x1 x32 x33 x47 x30 x7 x57 x49 x30 x57 x11 x37 x36 x21 x12 x38 x55 x9 x57 x25 x5 x38 x1 x29 x37 x49 x51 x50 x10 x6 x58 | {'task': 'reverse', 'seq': ['x58', 'x6', 'x10', 'x50', 'x51', 'x49', 'x37', 'x29', 'x1', 'x38', 'x5', 'x25', 'x57', 'x9', 'x55', 'x38', 'x12', 'x21', 'x36', 'x37', 'x11', 'x57', 'x30', 'x49', 'x57', 'x7', 'x30', 'x47', 'x33', 'x32', 'x1', 'x25'], 'k': 4, 'n': 32, '_time': 0.0004153251647949219, '_task': 'basic_procedur... | reverse | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x62 x58 x21 x46 x39 x39 x38 x61 x48 x13 x27 x16 x23 x52 x30 x34 x36 x27 x44 x4 x41 x5 x54 x52 x42 x37 x24 x15 x19 x8 x30 x34 | x62 x58 x21 x46 x39 x38 x61 x48 x13 x27 x16 x23 x52 x30 x34 x36 x44 x4 x41 x5 x54 x42 x37 x24 x15 x19 x8 | {'task': 'set', 'seq': ['x62', 'x58', 'x21', 'x46', 'x39', 'x39', 'x38', 'x61', 'x48', 'x13', 'x27', 'x16', 'x23', 'x52', 'x30', 'x34', 'x36', 'x27', 'x44', 'x4', 'x41', 'x5', 'x54', 'x52', 'x42', 'x37', 'x24', 'x15', 'x19', 'x8', 'x30', 'x34'], 'k': 4, 'n': 32, '_time': 0.00027942657470703125, '_task': 'basic_procedur... | set | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x62 x6 x48 x30 x24 x19 x26 x25 x46 x25 x24 x28 x39 x5 x36 x35 x61 x41 x61 x34 x17 x6 x52 x18 x14 x14 x32 x61 x45 x13 x3 x53 | x53 x3 x13 x45 x61 x32 x14 x14 x18 x52 x6 x17 x34 x61 x41 x61 x35 x36 x5 x39 x28 x24 x25 x46 x25 x26 x19 x24 x30 x48 x6 x62 | {'task': 'reverse', 'seq': ['x62', 'x6', 'x48', 'x30', 'x24', 'x19', 'x26', 'x25', 'x46', 'x25', 'x24', 'x28', 'x39', 'x5', 'x36', 'x35', 'x61', 'x41', 'x61', 'x34', 'x17', 'x6', 'x52', 'x18', 'x14', 'x14', 'x32', 'x61', 'x45', 'x13', 'x3', 'x53'], 'k': 4, 'n': 32, '_time': 0.00028014183044433594, '_task': 'basic_proce... | reverse | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x4 x40 x51 x39 x32 x12 x58 x43 x64 x7 x38 x40 x63 x54 x21 x12 x61 x28 x5 x23 x19 x41 x58 x37 x19 x57 x18 x45 x36 x42 x51 x16 | x4 x40 x51 x39 x32 x12 x58 x43 x64 x7 x38 x40 x63 x54 x21 x12 x61 x28 x5 x23 x19 x41 x58 x37 x19 x57 x18 x45 x36 x42 x51 x16 | {'task': 'identity', 'seq': ['x4', 'x40', 'x51', 'x39', 'x32', 'x12', 'x58', 'x43', 'x64', 'x7', 'x38', 'x40', 'x63', 'x54', 'x21', 'x12', 'x61', 'x28', 'x5', 'x23', 'x19', 'x41', 'x58', 'x37', 'x19', 'x57', 'x18', 'x45', 'x36', 'x42', 'x51', 'x16'], 'k': 4, 'n': 32, '_time': 0.0004143714904785156, '_task': 'basic_proc... | identity | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x47 x54 x59 x20 x32 x21 x39 x10 x41 x42 x30 x44 x11 x48 x32 x9 x9 x44 x12 x14 x56 x37 x57 x29 x60 x55 x47 x15 x18 x3 x47 x48 | x48 x47 x3 x18 x15 x47 x55 x60 x29 x57 x37 x56 x14 x12 x44 x9 x9 x32 x48 x11 x44 x30 x42 x41 x10 x39 x21 x32 x20 x59 x54 x47 | {'task': 'reverse', 'seq': ['x47', 'x54', 'x59', 'x20', 'x32', 'x21', 'x39', 'x10', 'x41', 'x42', 'x30', 'x44', 'x11', 'x48', 'x32', 'x9', 'x9', 'x44', 'x12', 'x14', 'x56', 'x37', 'x57', 'x29', 'x60', 'x55', 'x47', 'x15', 'x18', 'x3', 'x47', 'x48'], 'k': 4, 'n': 32, '_time': 0.0004150867462158203, '_task': 'basic_proce... | reverse | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x8 x39 x33 x61 x54 x29 x26 x24 x43 x20 x48 x10 x48 x49 x50 x18 x27 x34 x60 x9 x60 x50 x54 x40 x15 x40 x36 x7 x22 x10 x42 x16
(TARGET)
x54 | x8 x39 x33 x61 x29 x26 x24 x43 x20 x48 x10 x48 x49 x50 x18 x27 x34 x60 x9 x60 x50 x54 x40 x15 x40 x36 x7 x22 x10 x42 x16 | {'task': 'delete', 'seq': [['x8', 'x39', 'x33', 'x61', 'x54', 'x29', 'x26', 'x24', 'x43', 'x20', 'x48', 'x10', 'x48', 'x49', 'x50', 'x18', 'x27', 'x34', 'x60', 'x9', 'x60', 'x50', 'x54', 'x40', 'x15', 'x40', 'x36', 'x7', 'x22', 'x10', 'x42', 'x16'], 'x54'], 'k': 4, 'n': 32, '_time': 0.0002865791320800781, '_task': 'bas... | 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 x52; PUSH x45; PUSH x27; POP; POP; PUSH x2; PUSH x8; PUSH x59; PUSH x39; PUSH x33; PUSH x19; POP; PUSH x44; PUSH x12; PUSH x44; PUSH x59; PUSH x1; PUSH x2... | x33 x39 x59 x8 x2 x52 | {'task': 'stack', 'seq': ['PUSH x52', 'PUSH x45', 'PUSH x27', 'POP', 'POP', 'PUSH x2', 'PUSH x8', 'PUSH x59', 'PUSH x39', 'PUSH x33', 'PUSH x19', 'POP', 'PUSH x44', 'PUSH x12', 'PUSH x44', 'PUSH x59', 'PUSH x1', 'PUSH x22', 'PUSH x46', 'PUSH x64', 'POP', 'PUSH x6', 'POP', 'POP', 'POP', 'POP', 'POP', 'PUSH x4', 'POP', '... | stack | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x13 x26 x3 x48 x32 x16 x6 x59 x25 x42 x50 x37 x18 x55 x5 x54 x23 x61 x13 x29 x20 x21 x48 x55 x63 x43 x14 x13 x50 x5 x58 x9 | x9 x58 x5 x50 x13 x14 x43 x63 x55 x48 x21 x20 x29 x13 x61 x23 x54 x5 x55 x18 x37 x50 x42 x25 x59 x6 x16 x32 x48 x3 x26 x13 | {'task': 'reverse', 'seq': ['x13', 'x26', 'x3', 'x48', 'x32', 'x16', 'x6', 'x59', 'x25', 'x42', 'x50', 'x37', 'x18', 'x55', 'x5', 'x54', 'x23', 'x61', 'x13', 'x29', 'x20', 'x21', 'x48', 'x55', 'x63', 'x43', 'x14', 'x13', 'x50', 'x5', 'x58', 'x9'], 'k': 4, 'n': 32, '_time': 0.00041604042053222656, '_task': 'basic_proced... | reverse | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x36 x63 x17 x52 x10 x24 x22 x18 x60 x4 x32 x40 x1 x33 x36 x1 x48 x46 x62 x25 x8 x52 x20 x62 x39 x2 x41 x16 x48 x53 x6 x62 | x62 x6 x53 x48 x16 x41 x2 x39 x62 x20 x52 x8 x25 x62 x46 x48 x1 x36 x33 x1 x40 x32 x4 x60 x18 x22 x24 x10 x52 x17 x63 x36 | {'task': 'reverse', 'seq': ['x36', 'x63', 'x17', 'x52', 'x10', 'x24', 'x22', 'x18', 'x60', 'x4', 'x32', 'x40', 'x1', 'x33', 'x36', 'x1', 'x48', 'x46', 'x62', 'x25', 'x8', 'x52', 'x20', 'x62', 'x39', 'x2', 'x41', 'x16', 'x48', 'x53', 'x6', 'x62'], 'k': 4, 'n': 32, '_time': 0.0002741813659667969, '_task': 'basic_procedur... | reverse | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x23 x33 x4 x30 x35 x9 x52 x43 x34 x21 x19 x61 x21 x64 x31 x33 x57 x8 x64 x36 x58 x10 x4 x11 x51 x28 x58 x7 x38 x51 x33 x7 | x4 x4 x7 x7 x8 x9 x10 x11 x19 x21 x21 x23 x28 x30 x31 x33 x33 x33 x34 x35 x36 x38 x43 x51 x51 x52 x57 x58 x58 x61 x64 x64 | {'task': 'sort', 'seq': ['x23', 'x33', 'x4', 'x30', 'x35', 'x9', 'x52', 'x43', 'x34', 'x21', 'x19', 'x61', 'x21', 'x64', 'x31', 'x33', 'x57', 'x8', 'x64', 'x36', 'x58', 'x10', 'x4', 'x11', 'x51', 'x28', 'x58', 'x7', 'x38', 'x51', 'x33', 'x7'], 'k': 4, 'n': 32, '_time': 0.00043487548828125, '_task': 'basic_procedural', ... | sort | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x40 x24 x45 x13 x63 x34 x19 x41 x52 x22 x34 x47 x21 x36 x20 x23 x34 x4 x29 x37 x50 x23 x49 x20 x19 x55 x20 x6 x57 x31 x2 x62
(TARGET)
x62 | x40 x24 x45 x13 x63 x34 x19 x41 x52 x22 x34 x47 x21 x36 x20 x23 x34 x4 x29 x37 x50 x23 x49 x20 x19 x55 x20 x6 x57 x31 x2 | {'task': 'delete', 'seq': [['x40', 'x24', 'x45', 'x13', 'x63', 'x34', 'x19', 'x41', 'x52', 'x22', 'x34', 'x47', 'x21', 'x36', 'x20', 'x23', 'x34', 'x4', 'x29', 'x37', 'x50', 'x23', 'x49', 'x20', 'x19', 'x55', 'x20', 'x6', 'x57', 'x31', 'x2', 'x62'], 'x62'], 'k': 4, 'n': 32, '_time': 0.0003104209899902344, '_task': 'bas... | delete | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x22 x53 x64 x53 x37 x12 x34 x62 x36 x22 x55 x35 x7 x4 x63 x19 x8 x29 x18 x7 x14 x46 x42 x35 x42 x14 x55 x48 x25 x29 x44 x42
(TARGET)
x55 | x22 x53 x64 x53 x37 x12 x34 x62 x36 x22 x35 x7 x4 x63 x19 x8 x29 x18 x7 x14 x46 x42 x35 x42 x14 x55 x48 x25 x29 x44 x42 | {'task': 'delete', 'seq': [['x22', 'x53', 'x64', 'x53', 'x37', 'x12', 'x34', 'x62', 'x36', 'x22', 'x55', 'x35', 'x7', 'x4', 'x63', 'x19', 'x8', 'x29', 'x18', 'x7', 'x14', 'x46', 'x42', 'x35', 'x42', 'x14', 'x55', 'x48', 'x25', 'x29', 'x44', 'x42'], 'x55'], 'k': 4, 'n': 32, '_time': 0.0002868175506591797, '_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. | o1 c1 o0 o2 c0 c2 o3 c3 o1 o1 o3 o3 o1 c1 o0 o2 o2 o0 c0 o2 c1 c3 o1 c1 o3 c0 c1 c2 c2 c2 c3 c3 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00045108795166015625, '_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 o3 o1 c1 c3 o2 o1 c1 c2 o3 c3 o2 o0 o0 c0 o1 c1 c0 c2 o0 c0 o0 o3 c3 o1 o2 c2 c1 o3 c3 c0 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002295970916748047, '_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)
x53 x1 x39 x48 x60 x50 x35 x35 x53 x25 x17 x39 x25 x4 x14 x40
(B)
x20 x45 x44 x1 x31 x5 x17 x59 x33 x37 x7 x41 x61 x38 x56 x33 | x53 x1 x39 x48 x60 x50 x35 x25 x17 x4 x14 x40 x20 x45 x44 x31 x5 x59 x33 x37 x7 x41 x61 x38 x56 | {'task': 'union', 'seq': [['x53', 'x1', 'x39', 'x48', 'x60', 'x50', 'x35', 'x35', 'x53', 'x25', 'x17', 'x39', 'x25', 'x4', 'x14', 'x40'], ['x20', 'x45', 'x44', 'x1', 'x31', 'x5', 'x17', 'x59', 'x33', 'x37', 'x7', 'x41', 'x61', 'x38', 'x56', 'x33']], 'k': 4, 'n': 32, '_time': 0.0004487037658691406, '_task': 'basic_proce... | union | instruct | 0 |
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B.
(A)
x24 x9 x23 x51 x38 x60 x59 x44 x13 x5 x19 x54 x42 x13 x7 x23
(B)
x23 x40 x2 x26 x26 x32 x14 x46 x13 x36 x60 x38 x63 x60 x27 x39 | x24 x9 x23 x51 x38 x60 x59 x44 x13 x5 x19 x54 x42 x7 x40 x2 x26 x32 x14 x46 x36 x63 x27 x39 | {'task': 'union', 'seq': [['x24', 'x9', 'x23', 'x51', 'x38', 'x60', 'x59', 'x44', 'x13', 'x5', 'x19', 'x54', 'x42', 'x13', 'x7', 'x23'], ['x23', 'x40', 'x2', 'x26', 'x26', 'x32', 'x14', 'x46', 'x13', 'x36', 'x60', 'x38', 'x63', 'x60', 'x27', 'x39']], 'k': 4, 'n': 32, '_time': 0.0004482269287109375, '_task': 'basic_proc... | union | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x28 x57 x10 x18 x64 x24 x38 x50 x37 x10 x16 x5 x50 x51 x13 x15 x3 x60 x40 x20 x16 x32 x64 x44 x8 x55 x64 x23 x23 x54 x6 x7 | x28 x57 x10 x18 x64 x24 x38 x50 x37 x10 x16 x5 x50 x51 x13 x15 x3 x60 x40 x20 x16 x32 x64 x44 x8 x55 x64 x23 x23 x54 x6 x7 | {'task': 'identity', 'seq': ['x28', 'x57', 'x10', 'x18', 'x64', 'x24', 'x38', 'x50', 'x37', 'x10', 'x16', 'x5', 'x50', 'x51', 'x13', 'x15', 'x3', 'x60', 'x40', 'x20', 'x16', 'x32', 'x64', 'x44', 'x8', 'x55', 'x64', 'x23', 'x23', 'x54', 'x6', 'x7'], 'k': 4, 'n': 32, '_time': 0.0003771781921386719, '_task': 'basic_proced... | identity | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x64 x61 x46 x64 x53 x52 x7 x1 x9 x13 x59 x58 x28 x40 x49 x24 x33 x35 x14 x26 x7 x32 x25 x35 x11 x35 x21 x16 x15 x38 x36 x47
(TARGET)
x38 | x64 x61 x46 x64 x53 x52 x7 x1 x9 x13 x59 x58 x28 x40 x49 x24 x33 x35 x14 x26 x7 x32 x25 x35 x11 x35 x21 x16 x15 x36 x47 | {'task': 'delete', 'seq': [['x64', 'x61', 'x46', 'x64', 'x53', 'x52', 'x7', 'x1', 'x9', 'x13', 'x59', 'x58', 'x28', 'x40', 'x49', 'x24', 'x33', 'x35', 'x14', 'x26', 'x7', 'x32', 'x25', 'x35', 'x11', 'x35', 'x21', 'x16', 'x15', 'x38', 'x36', 'x47'], 'x38'], 'k': 4, 'n': 32, '_time': 0.0002887248992919922, '_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 x9; POP; PUSH x61; PUSH x26; PUSH x15; PUSH x42; PUSH x49; PUSH x39; PUSH x26; PUSH x21; PUSH x27; PUSH x23; POP; POP; PUSH x59; POP; POP; POP; PUSH x44; ... | x39 x49 x42 x15 x26 x61 | {'task': 'stack', 'seq': ['PUSH x9', 'POP', 'PUSH x61', 'PUSH x26', 'PUSH x15', 'PUSH x42', 'PUSH x49', 'PUSH x39', 'PUSH x26', 'PUSH x21', 'PUSH x27', 'PUSH x23', 'POP', 'POP', 'PUSH x59', 'POP', 'POP', 'POP', 'PUSH x44', 'PUSH x6', 'PUSH x59', 'PUSH x48', 'POP', 'POP', 'POP', 'POP', 'PUSH x45', 'POP', 'PUSH x49', 'PO... | stack | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x21 x59 x63 x30 x4 x18 x59 x40 x44 x64 x20 x52 x38 x41 x59 x57 x21 x24 x36 x42 x51 x54 x44 x49 x43 x17 x30 x9 x11 x47 x51 x15 | x21 x59 x63 x30 x4 x18 x40 x44 x64 x20 x52 x38 x41 x57 x24 x36 x42 x51 x54 x49 x43 x17 x9 x11 x47 x15 | {'task': 'set', 'seq': ['x21', 'x59', 'x63', 'x30', 'x4', 'x18', 'x59', 'x40', 'x44', 'x64', 'x20', 'x52', 'x38', 'x41', 'x59', 'x57', 'x21', 'x24', 'x36', 'x42', 'x51', 'x54', 'x44', 'x49', 'x43', 'x17', 'x30', 'x9', 'x11', 'x47', 'x51', 'x15'], 'k': 4, 'n': 32, '_time': 0.0004208087921142578, '_task': 'basic_procedur... | set | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x54 x21 x61 x40 x47 x1 x55 x4 x51 x56 x26 x55 x46 x52 x44 x54 x24 x9 x60 x42 x4 x32 x52 x44 x58 x11 x62 x14 x18 x50 x20 x23
(TARGET)
x18 | x54 x21 x61 x40 x47 x1 x55 x4 x51 x56 x26 x55 x46 x52 x44 x54 x24 x9 x60 x42 x4 x32 x52 x44 x58 x11 x62 x14 x50 x20 x23 | {'task': 'delete', 'seq': [['x54', 'x21', 'x61', 'x40', 'x47', 'x1', 'x55', 'x4', 'x51', 'x56', 'x26', 'x55', 'x46', 'x52', 'x44', 'x54', 'x24', 'x9', 'x60', 'x42', 'x4', 'x32', 'x52', 'x44', 'x58', 'x11', 'x62', 'x14', 'x18', 'x50', 'x20', 'x23'], 'x18'], 'k': 4, 'n': 32, '_time': 0.0004367828369140625, '_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 x23; POP; POP; PUSH x5; PUSH x14; PUSH x26; POP; PUSH x9; PUSH x17; POP; PUSH x28; PUSH x26; PUSH x49; POP; PUSH x3; PUSH x17; PUSH x14; PUSH x1... | x41 x17 x3 x26 x28 x9 x14 x5 | {'task': 'stack', 'seq': ['PUSH x22', 'PUSH x23', 'POP', 'POP', 'PUSH x5', 'PUSH x14', 'PUSH x26', 'POP', 'PUSH x9', 'PUSH x17', 'POP', 'PUSH x28', 'PUSH x26', 'PUSH x49', 'POP', 'PUSH x3', 'PUSH x17', 'PUSH x14', 'PUSH x11', 'PUSH x1', 'PUSH x9', 'PUSH x54', 'POP', 'PUSH x12', 'POP', 'POP', 'POP', 'POP', 'POP', 'PUSH ... | 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)
x1 x37 x40 x2 x22 x49 x37 x44 x35 x16 x6 x62 x31 x29 x47 x55
(B)
x19 x30 x24 x22 x19 x23 x53 x13 x13 x15 x45 x62 x56 x33 x33 x23 | x1 x37 x40 x2 x22 x49 x44 x35 x16 x6 x62 x31 x29 x47 x55 x19 x30 x24 x23 x53 x13 x15 x45 x56 x33 | {'task': 'union', 'seq': [['x1', 'x37', 'x40', 'x2', 'x22', 'x49', 'x37', 'x44', 'x35', 'x16', 'x6', 'x62', 'x31', 'x29', 'x47', 'x55'], ['x19', 'x30', 'x24', 'x22', 'x19', 'x23', 'x53', 'x13', 'x13', 'x15', 'x45', 'x62', 'x56', 'x33', 'x33', 'x23']], 'k': 4, 'n': 32, '_time': 0.00029540061950683594, '_task': 'basic_pr... | union | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x20 x21 x45 x3 x50 x59 x44 x42 x37 x62 x3 x58 x41 x24 x34 x9 x31 x5 x27 x47 x12 x19 x22 x21 x8 x54 x41 x63 x46 x9 x63 x3 | x20 x21 x45 x3 x50 x59 x44 x42 x37 x62 x58 x41 x24 x34 x9 x31 x5 x27 x47 x12 x19 x22 x8 x54 x63 x46 | {'task': 'set', 'seq': ['x20', 'x21', 'x45', 'x3', 'x50', 'x59', 'x44', 'x42', 'x37', 'x62', 'x3', 'x58', 'x41', 'x24', 'x34', 'x9', 'x31', 'x5', 'x27', 'x47', 'x12', 'x19', 'x22', 'x21', 'x8', 'x54', 'x41', 'x63', 'x46', 'x9', 'x63', 'x3'], 'k': 4, 'n': 32, '_time': 0.0004248619079589844, '_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)
x59 x63 x2 x49 x55 x49 x53 x61 x48 x14 x51 x6 x38 x63 x13 x5
(B)
x50 x26 x49 x15 x22 x8 x58 x47 x4 x41 x32 x15 x40 x22 x64 x55 | x59 x63 x2 x49 x55 x53 x61 x48 x14 x51 x6 x38 x13 x5 x50 x26 x15 x22 x8 x58 x47 x4 x41 x32 x40 x64 | {'task': 'union', 'seq': [['x59', 'x63', 'x2', 'x49', 'x55', 'x49', 'x53', 'x61', 'x48', 'x14', 'x51', 'x6', 'x38', 'x63', 'x13', 'x5'], ['x50', 'x26', 'x49', 'x15', 'x22', 'x8', 'x58', 'x47', 'x4', 'x41', 'x32', 'x15', 'x40', 'x22', 'x64', 'x55']], 'k': 4, 'n': 32, '_time': 0.00044846534729003906, '_task': 'basic_proc... | union | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x12 x27 x24 x9 x53 x30 x30 x31 x28 x29 x50 x46 x62 x14 x14 x46 x37 x35 x52 x60 x45 x53 x5 x7 x41 x45 x23 x35 x35 x19 x54 x8 | x8 x54 x19 x35 x35 x23 x45 x41 x7 x5 x53 x45 x60 x52 x35 x37 x46 x14 x14 x62 x46 x50 x29 x28 x31 x30 x30 x53 x9 x24 x27 x12 | {'task': 'reverse', 'seq': ['x12', 'x27', 'x24', 'x9', 'x53', 'x30', 'x30', 'x31', 'x28', 'x29', 'x50', 'x46', 'x62', 'x14', 'x14', 'x46', 'x37', 'x35', 'x52', 'x60', 'x45', 'x53', 'x5', 'x7', 'x41', 'x45', 'x23', 'x35', 'x35', 'x19', 'x54', 'x8'], 'k': 4, 'n': 32, '_time': 0.0002727508544921875, '_task': 'basic_proced... | 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)
x21 x19 x30 x17 x62 x13 x59 x40 x41 x39 x5 x51 x61 x43 x25 x54
(B)
x24 x4 x35 x1 x17 x22 x29 x1 x2 x37 x33 x40 x23 x33 x17 x61 | x21 x19 x30 x17 x62 x13 x59 x40 x41 x39 x5 x51 x61 x43 x25 x54 x24 x4 x35 x1 x22 x29 x2 x37 x33 x23 | {'task': 'union', 'seq': [['x21', 'x19', 'x30', 'x17', 'x62', 'x13', 'x59', 'x40', 'x41', 'x39', 'x5', 'x51', 'x61', 'x43', 'x25', 'x54'], ['x24', 'x4', 'x35', 'x1', 'x17', 'x22', 'x29', 'x1', 'x2', 'x37', 'x33', 'x40', 'x23', 'x33', 'x17', 'x61']], 'k': 4, 'n': 32, '_time': 0.0003581047058105469, '_task': 'basic_proce... | union | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x59 x22 x41 x30 x61 x22 x21 x16 x16 x39 x28 x43 x44 x3 x2 x2 x61 x19 x47 x63 x19 x15 x45 x29 x42 x59 x62 x62 x51 x64 x17 x29 | x2 x2 x3 x15 x16 x16 x17 x19 x19 x21 x22 x22 x28 x29 x29 x30 x39 x41 x42 x43 x44 x45 x47 x51 x59 x59 x61 x61 x62 x62 x63 x64 | {'task': 'sort', 'seq': ['x59', 'x22', 'x41', 'x30', 'x61', 'x22', 'x21', 'x16', 'x16', 'x39', 'x28', 'x43', 'x44', 'x3', 'x2', 'x2', 'x61', 'x19', 'x47', 'x63', 'x19', 'x15', 'x45', 'x29', 'x42', 'x59', 'x62', 'x62', 'x51', 'x64', 'x17', 'x29'], 'k': 4, 'n': 32, '_time': 0.00043702125549316406, '_task': 'basic_procedu... | 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 o2 o3 o0 c0 c3 c2 c2 o0 o3 o1 o0 o1 c1 c0 c1 o2 o2 o3 c3 c2 o0 o3 c3 o1 c1 c0 c2 c3 c0 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00030684471130371094, '_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)
x61 x32 x18 x25 x12 x28 x44 x53 x29 x20 x41 x11 x12 x36 x40 x52 x61 x47 x35 x36 x14 x54 x8 x27 x58 x40 x29 x35 x13 x52 x47 x10 | x10 x47 x52 x13 x35 x29 x40 x58 x27 x8 x54 x14 x36 x35 x47 x61 x52 x40 x36 x12 x11 x41 x20 x29 x53 x44 x28 x12 x25 x18 x32 x61 | {'task': 'reverse', 'seq': ['x61', 'x32', 'x18', 'x25', 'x12', 'x28', 'x44', 'x53', 'x29', 'x20', 'x41', 'x11', 'x12', 'x36', 'x40', 'x52', 'x61', 'x47', 'x35', 'x36', 'x14', 'x54', 'x8', 'x27', 'x58', 'x40', 'x29', 'x35', 'x13', 'x52', 'x47', 'x10'], 'k': 4, 'n': 32, '_time': 0.0002779960632324219, '_task': 'basic_pro... | 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. | o2 c2 o1 c1 o3 o1 o3 c1 c3 o2 o1 c2 c3 c1 o0 o3 c0 c3 o3 o1 o3 c1 o1 c3 c3 c1 o2 o1 o3 c3 c1 c2 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0004582405090332031, '_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. | o1 o2 o0 o1 o3 c2 c1 o3 c0 c1 o1 c3 o1 o2 o2 o2 o3 c2 c1 c2 o3 c2 o0 o0 o2 c3 c1 c0 c2 c0 c3 c3 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00045228004455566406, '_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)
x47 x1 x15 x15 x28 x48 x39 x24 x19 x35 x37 x20 x16 x60 x38 x25
(B)
x34 x4 x40 x35 x58 x8 x16 x18 x44 x9 x3 x41 x47 x62 x53 x39 | x47 x1 x15 x28 x48 x39 x24 x19 x35 x37 x20 x16 x60 x38 x25 x34 x4 x40 x58 x8 x18 x44 x9 x3 x41 x62 x53 | {'task': 'union', 'seq': [['x47', 'x1', 'x15', 'x15', 'x28', 'x48', 'x39', 'x24', 'x19', 'x35', 'x37', 'x20', 'x16', 'x60', 'x38', 'x25'], ['x34', 'x4', 'x40', 'x35', 'x58', 'x8', 'x16', 'x18', 'x44', 'x9', 'x3', 'x41', 'x47', 'x62', 'x53', 'x39']], 'k': 4, 'n': 32, '_time': 0.00034737586975097656, '_task': 'basic_proc... | union | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x61 x42 x64 x10 x60 x57 x14 x31 x15 x57 x32 x56 x47 x24 x57 x37 x28 x50 x16 x64 x15 x60 x26 x42 x18 x6 x19 x49 x21 x62 x50 x14 | x61 x42 x64 x10 x60 x57 x14 x31 x15 x32 x56 x47 x24 x37 x28 x50 x16 x26 x18 x6 x19 x49 x21 x62 | {'task': 'set', 'seq': ['x61', 'x42', 'x64', 'x10', 'x60', 'x57', 'x14', 'x31', 'x15', 'x57', 'x32', 'x56', 'x47', 'x24', 'x57', 'x37', 'x28', 'x50', 'x16', 'x64', 'x15', 'x60', 'x26', 'x42', 'x18', 'x6', 'x19', 'x49', 'x21', 'x62', 'x50', 'x14'], 'k': 4, 'n': 32, '_time': 0.0004165172576904297, '_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 x36; PUSH x33; PUSH x9; POP; PUSH x31; PUSH x11; PUSH x36; POP; POP; PUSH x47; PUSH x48; POP; PUSH x38; POP; POP; POP; PUSH x5; POP; POP; PUSH x21; PUSH x... | EMPTY | {'task': 'stack', 'seq': ['PUSH x36', 'PUSH x33', 'PUSH x9', 'POP', 'PUSH x31', 'PUSH x11', 'PUSH x36', 'POP', 'POP', 'PUSH x47', 'PUSH x48', 'POP', 'PUSH x38', 'POP', 'POP', 'POP', 'PUSH x5', 'POP', 'POP', 'PUSH x21', 'PUSH x31', 'POP', 'POP', 'POP', 'PUSH x5', 'POP', 'PUSH x28', 'POP', 'PUSH x18', 'PUSH x9', 'POP', '... | stack | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x57 x9 x32 x54 x3 x9 x6 x61 x14 x13 x22 x59 x26 x10 x59 x63 x56 x37 x64 x11 x52 x28 x53 x19 x37 x9 x8 x12 x56 x59 x61 x7
(TARGET)
x64 | x57 x9 x32 x54 x3 x9 x6 x61 x14 x13 x22 x59 x26 x10 x59 x63 x56 x37 x11 x52 x28 x53 x19 x37 x9 x8 x12 x56 x59 x61 x7 | {'task': 'delete', 'seq': [['x57', 'x9', 'x32', 'x54', 'x3', 'x9', 'x6', 'x61', 'x14', 'x13', 'x22', 'x59', 'x26', 'x10', 'x59', 'x63', 'x56', 'x37', 'x64', 'x11', 'x52', 'x28', 'x53', 'x19', 'x37', 'x9', 'x8', 'x12', 'x56', 'x59', 'x61', 'x7'], 'x64'], 'k': 4, 'n': 32, '_time': 0.0004367828369140625, '_task': 'basic_p... | delete | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x57 x11 x48 x47 x29 x42 x20 x22 x16 x20 x29 x54 x27 x21 x64 x61 x21 x48 x10 x54 x58 x54 x45 x23 x28 x2 x10 x40 x26 x60 x64 x38 | x38 x64 x60 x26 x40 x10 x2 x28 x23 x45 x54 x58 x54 x10 x48 x21 x61 x64 x21 x27 x54 x29 x20 x16 x22 x20 x42 x29 x47 x48 x11 x57 | {'task': 'reverse', 'seq': ['x57', 'x11', 'x48', 'x47', 'x29', 'x42', 'x20', 'x22', 'x16', 'x20', 'x29', 'x54', 'x27', 'x21', 'x64', 'x61', 'x21', 'x48', 'x10', 'x54', 'x58', 'x54', 'x45', 'x23', 'x28', 'x2', 'x10', 'x40', 'x26', 'x60', 'x64', 'x38'], 'k': 4, 'n': 32, '_time': 0.00031757354736328125, '_task': 'basic_pr... | reverse | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x34 x15 x23 x44 x49 x11 x33 x49 x34 x24 x11 x9 x31 x22 x24 x59 x53 x32 x7 x46 x42 x36 x50 x54 x16 x33 x26 x19 x45 x60 x15 x44
(TARGET)
x49 | x34 x15 x23 x44 x11 x33 x49 x34 x24 x11 x9 x31 x22 x24 x59 x53 x32 x7 x46 x42 x36 x50 x54 x16 x33 x26 x19 x45 x60 x15 x44 | {'task': 'delete', 'seq': [['x34', 'x15', 'x23', 'x44', 'x49', 'x11', 'x33', 'x49', 'x34', 'x24', 'x11', 'x9', 'x31', 'x22', 'x24', 'x59', 'x53', 'x32', 'x7', 'x46', 'x42', 'x36', 'x50', 'x54', 'x16', 'x33', 'x26', 'x19', 'x45', 'x60', 'x15', 'x44'], 'x49'], 'k': 4, 'n': 32, '_time': 0.0004036426544189453, '_task': 'ba... | 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. | o1 o3 c3 c1 o0 o2 c2 c0 o0 o2 o0 o1 o0 c1 o3 o2 o0 c3 o3 c0 c3 c2 c0 c0 c0 o0 o2 c0 o0 c0 c2 c2 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003979206085205078, '_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 x11; PUSH x27; POP; PUSH x26; POP; POP; PUSH x30; POP; PUSH x8; PUSH x41; PUSH x55; PUSH x59; PUSH x5; PUSH x5; POP; POP; PUSH x63; PUSH x2; PUSH x64; PUS... | x59 x55 x41 x8 | {'task': 'stack', 'seq': ['PUSH x11', 'PUSH x27', 'POP', 'PUSH x26', 'POP', 'POP', 'PUSH x30', 'POP', 'PUSH x8', 'PUSH x41', 'PUSH x55', 'PUSH x59', 'PUSH x5', 'PUSH x5', 'POP', 'POP', 'PUSH x63', 'PUSH x2', 'PUSH x64', 'PUSH x63', 'PUSH x55', 'PUSH x60', 'POP', 'POP', 'POP', 'POP', 'PUSH x6', 'POP', 'POP', 'PUSH x5', ... | 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. | o2 o3 o2 c2 c3 o1 o1 c1 o3 o0 o1 c2 o2 c0 o0 c0 c3 c1 o0 c2 o1 o1 c1 o3 c3 c0 c1 o1 o0 c0 c1 c1 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003476142883300781, '_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)
x64 x31 x29 x64 x8 x59 x10 x1 x11 x19 x12 x34 x52 x42 x32 x14 x56 x37 x43 x38 x51 x16 x32 x22 x59 x56 x29 x23 x23 x52 x54 x50 | x64 x31 x29 x64 x8 x59 x10 x1 x11 x19 x12 x34 x52 x42 x32 x14 x56 x37 x43 x38 x51 x16 x32 x22 x59 x56 x29 x23 x23 x52 x54 x50 | {'task': 'identity', 'seq': ['x64', 'x31', 'x29', 'x64', 'x8', 'x59', 'x10', 'x1', 'x11', 'x19', 'x12', 'x34', 'x52', 'x42', 'x32', 'x14', 'x56', 'x37', 'x43', 'x38', 'x51', 'x16', 'x32', 'x22', 'x59', 'x56', 'x29', 'x23', 'x23', 'x52', 'x54', 'x50'], 'k': 4, 'n': 32, '_time': 0.0004131793975830078, '_task': 'basic_pro... | identity | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x12 x49 x5 x17 x8 x16 x16 x53 x30 x51 x19 x53 x5 x36 x13 x59 x5 x42 x34 x22 x47 x31 x40 x21 x22 x63 x27 x38 x43 x64 x42 x5 | x5 x5 x5 x5 x8 x12 x13 x16 x16 x17 x19 x21 x22 x22 x27 x30 x31 x34 x36 x38 x40 x42 x42 x43 x47 x49 x51 x53 x53 x59 x63 x64 | {'task': 'sort', 'seq': ['x12', 'x49', 'x5', 'x17', 'x8', 'x16', 'x16', 'x53', 'x30', 'x51', 'x19', 'x53', 'x5', 'x36', 'x13', 'x59', 'x5', 'x42', 'x34', 'x22', 'x47', 'x31', 'x40', 'x21', 'x22', 'x63', 'x27', 'x38', 'x43', 'x64', 'x42', 'x5'], 'k': 4, 'n': 32, '_time': 0.0003848075866699219, '_task': 'basic_procedural... | sort | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x63 x40 x44 x59 x27 x12 x23 x41 x8 x2 x26 x14 x9 x49 x27 x6 x46 x52 x50 x8 x63 x62 x48 x43 x30 x13 x39 x40 x38 x38 x44 x49 | x2 x6 x8 x8 x9 x12 x13 x14 x23 x26 x27 x27 x30 x38 x38 x39 x40 x40 x41 x43 x44 x44 x46 x48 x49 x49 x50 x52 x59 x62 x63 x63 | {'task': 'sort', 'seq': ['x63', 'x40', 'x44', 'x59', 'x27', 'x12', 'x23', 'x41', 'x8', 'x2', 'x26', 'x14', 'x9', 'x49', 'x27', 'x6', 'x46', 'x52', 'x50', 'x8', 'x63', 'x62', 'x48', 'x43', 'x30', 'x13', 'x39', 'x40', 'x38', 'x38', 'x44', 'x49'], 'k': 4, 'n': 32, '_time': 0.00033593177795410156, '_task': 'basic_procedura... | sort | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x18 x33 x60 x41 x48 x11 x21 x39 x2 x7 x8 x53 x41 x63 x57 x27 x24 x29 x8 x14 x12 x55 x14 x50 x11 x63 x34 x61 x4 x16 x30 x11
(TARGET)
x27 | x18 x33 x60 x41 x48 x11 x21 x39 x2 x7 x8 x53 x41 x63 x57 x24 x29 x8 x14 x12 x55 x14 x50 x11 x63 x34 x61 x4 x16 x30 x11 | {'task': 'delete', 'seq': [['x18', 'x33', 'x60', 'x41', 'x48', 'x11', 'x21', 'x39', 'x2', 'x7', 'x8', 'x53', 'x41', 'x63', 'x57', 'x27', 'x24', 'x29', 'x8', 'x14', 'x12', 'x55', 'x14', 'x50', 'x11', 'x63', 'x34', 'x61', 'x4', 'x16', 'x30', 'x11'], 'x27'], 'k': 4, 'n': 32, '_time': 0.0004341602325439453, '_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. | o2 c2 o0 c0 o2 c2 o0 o3 o0 c0 c3 o0 o1 o3 o1 o3 o3 c0 o2 o2 o0 c2 c0 o3 c3 c2 c3 c3 c1 c1 c0 c3 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003275871276855469, '_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 o0 c3 o0 c0 c0 o1 c1 o3 o0 c3 o1 o3 c3 o1 o1 c1 o0 o1 o3 o1 c1 o1 c1 c0 o0 c1 c3 c0 c0 c1 c1 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00045680999755859375, '_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)
x40 x32 x43 x39 x29 x21 x44 x61 x20 x8 x8 x5 x3 x33 x36 x5 x8 x51 x27 x21 x61 x56 x48 x44 x47 x16 x38 x56 x5 x40 x55 x18
(TARGET)
x44 | x40 x32 x43 x39 x29 x21 x61 x20 x8 x8 x5 x3 x33 x36 x5 x8 x51 x27 x21 x61 x56 x48 x44 x47 x16 x38 x56 x5 x40 x55 x18 | {'task': 'delete', 'seq': [['x40', 'x32', 'x43', 'x39', 'x29', 'x21', 'x44', 'x61', 'x20', 'x8', 'x8', 'x5', 'x3', 'x33', 'x36', 'x5', 'x8', 'x51', 'x27', 'x21', 'x61', 'x56', 'x48', 'x44', 'x47', 'x16', 'x38', 'x56', 'x5', 'x40', 'x55', 'x18'], 'x44'], 'k': 4, 'n': 32, '_time': 0.0003349781036376953, '_task': 'basic_p... | delete | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x34 x18 x34 x22 x28 x6 x53 x20 x39 x29 x33 x48 x58 x44 x28 x24 x21 x46 x40 x9 x42 x7 x59 x18 x41 x18 x31 x44 x41 x20 x3 x33 | x33 x3 x20 x41 x44 x31 x18 x41 x18 x59 x7 x42 x9 x40 x46 x21 x24 x28 x44 x58 x48 x33 x29 x39 x20 x53 x6 x28 x22 x34 x18 x34 | {'task': 'reverse', 'seq': ['x34', 'x18', 'x34', 'x22', 'x28', 'x6', 'x53', 'x20', 'x39', 'x29', 'x33', 'x48', 'x58', 'x44', 'x28', 'x24', 'x21', 'x46', 'x40', 'x9', 'x42', 'x7', 'x59', 'x18', 'x41', 'x18', 'x31', 'x44', 'x41', 'x20', 'x3', 'x33'], 'k': 4, 'n': 32, '_time': 0.0004143714904785156, '_task': 'basic_proced... | reverse | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x24 x16 x56 x1 x34 x22 x41 x51 x49 x61 x34 x48 x32 x18 x34 x51 x36 x22 x37 x10 x33 x5 x45 x41 x27 x46 x33 x55 x10 x20 x22 x45 | x45 x22 x20 x10 x55 x33 x46 x27 x41 x45 x5 x33 x10 x37 x22 x36 x51 x34 x18 x32 x48 x34 x61 x49 x51 x41 x22 x34 x1 x56 x16 x24 | {'task': 'reverse', 'seq': ['x24', 'x16', 'x56', 'x1', 'x34', 'x22', 'x41', 'x51', 'x49', 'x61', 'x34', 'x48', 'x32', 'x18', 'x34', 'x51', 'x36', 'x22', 'x37', 'x10', 'x33', 'x5', 'x45', 'x41', 'x27', 'x46', 'x33', 'x55', 'x10', 'x20', 'x22', 'x45'], 'k': 4, 'n': 32, '_time': 0.0002968311309814453, '_task': 'basic_proc... | reverse | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x50 x30 x7 x25 x60 x23 x20 x56 x6 x15 x42 x43 x3 x42 x33 x2 x6 x1 x26 x16 x42 x1 x52 x26 x64 x41 x23 x60 x44 x63 x43 x15 | x1 x1 x2 x3 x6 x6 x7 x15 x15 x16 x20 x23 x23 x25 x26 x26 x30 x33 x41 x42 x42 x42 x43 x43 x44 x50 x52 x56 x60 x60 x63 x64 | {'task': 'sort', 'seq': ['x50', 'x30', 'x7', 'x25', 'x60', 'x23', 'x20', 'x56', 'x6', 'x15', 'x42', 'x43', 'x3', 'x42', 'x33', 'x2', 'x6', 'x1', 'x26', 'x16', 'x42', 'x1', 'x52', 'x26', 'x64', 'x41', 'x23', 'x60', 'x44', 'x63', 'x43', 'x15'], 'k': 4, 'n': 32, '_time': 0.0004372596740722656, '_task': 'basic_procedural',... | sort | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x57 x47 x25 x7 x50 x42 x18 x30 x36 x42 x24 x28 x6 x40 x40 x61 x50 x61 x19 x57 x8 x3 x33 x16 x19 x46 x35 x24 x25 x62 x15 x2 | x2 x3 x6 x7 x8 x15 x16 x18 x19 x19 x24 x24 x25 x25 x28 x30 x33 x35 x36 x40 x40 x42 x42 x46 x47 x50 x50 x57 x57 x61 x61 x62 | {'task': 'sort', 'seq': ['x57', 'x47', 'x25', 'x7', 'x50', 'x42', 'x18', 'x30', 'x36', 'x42', 'x24', 'x28', 'x6', 'x40', 'x40', 'x61', 'x50', 'x61', 'x19', 'x57', 'x8', 'x3', 'x33', 'x16', 'x19', 'x46', 'x35', 'x24', 'x25', 'x62', 'x15', 'x2'], 'k': 4, 'n': 32, '_time': 0.00043463706970214844, '_task': 'basic_procedura... | sort | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x20 x47 x29 x52 x42 x33 x3 x46 x48 x36 x28 x17 x42 x24 x54 x15 x43 x14 x3 x8 x16 x31 x8 x38 x58 x15 x21 x11 x7 x51 x1 x33 | x1 x3 x3 x7 x8 x8 x11 x14 x15 x15 x16 x17 x20 x21 x24 x28 x29 x31 x33 x33 x36 x38 x42 x42 x43 x46 x47 x48 x51 x52 x54 x58 | {'task': 'sort', 'seq': ['x20', 'x47', 'x29', 'x52', 'x42', 'x33', 'x3', 'x46', 'x48', 'x36', 'x28', 'x17', 'x42', 'x24', 'x54', 'x15', 'x43', 'x14', 'x3', 'x8', 'x16', 'x31', 'x8', 'x38', 'x58', 'x15', 'x21', 'x11', 'x7', 'x51', 'x1', 'x33'], 'k': 4, 'n': 32, '_time': 0.000335693359375, '_task': 'basic_procedural', '_... | sort | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x45 x22 x11 x23 x32 x4 x19 x34 x28 x29 x31 x25 x17 x56 x45 x36 x56 x53 x23 x27 x50 x15 x26 x57 x56 x63 x52 x49 x22 x59 x33 x24 | x45 x22 x11 x23 x32 x4 x19 x34 x28 x29 x31 x25 x17 x56 x36 x53 x27 x50 x15 x26 x57 x63 x52 x49 x59 x33 x24 | {'task': 'set', 'seq': ['x45', 'x22', 'x11', 'x23', 'x32', 'x4', 'x19', 'x34', 'x28', 'x29', 'x31', 'x25', 'x17', 'x56', 'x45', 'x36', 'x56', 'x53', 'x23', 'x27', 'x50', 'x15', 'x26', 'x57', 'x56', 'x63', 'x52', 'x49', 'x22', 'x59', 'x33', 'x24'], 'k': 4, 'n': 32, '_time': 0.00038361549377441406, '_task': 'basic_proced... | 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 x36; PUSH x49; POP; PUSH x52; POP; PUSH x47; POP; PUSH x6; PUSH x2; PUSH x8; PUSH x22; PUSH x47; POP; PUSH x42; PUSH x51; PUSH x2; PUSH x41; POP; POP; PUS... | x42 x22 x8 x2 x6 x36 | {'task': 'stack', 'seq': ['PUSH x36', 'PUSH x49', 'POP', 'PUSH x52', 'POP', 'PUSH x47', 'POP', 'PUSH x6', 'PUSH x2', 'PUSH x8', 'PUSH x22', 'PUSH x47', 'POP', 'PUSH x42', 'PUSH x51', 'PUSH x2', 'PUSH x41', 'POP', 'POP', 'PUSH x9', 'PUSH x55', 'PUSH x23', 'PUSH x3', 'POP', 'POP', 'PUSH x35', 'POP', 'PUSH x62', 'POP', 'P... | stack | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x22 x2 x33 x10 x54 x61 x61 x35 x28 x51 x34 x33 x16 x17 x20 x64 x64 x44 x9 x61 x52 x8 x45 x17 x32 x11 x40 x53 x64 x5 x52 x40 | x22 x2 x33 x10 x54 x61 x61 x35 x28 x51 x34 x33 x16 x17 x20 x64 x64 x44 x9 x61 x52 x8 x45 x17 x32 x11 x40 x53 x64 x5 x52 x40 | {'task': 'identity', 'seq': ['x22', 'x2', 'x33', 'x10', 'x54', 'x61', 'x61', 'x35', 'x28', 'x51', 'x34', 'x33', 'x16', 'x17', 'x20', 'x64', 'x64', 'x44', 'x9', 'x61', 'x52', 'x8', 'x45', 'x17', 'x32', 'x11', 'x40', 'x53', 'x64', 'x5', 'x52', 'x40'], 'k': 4, 'n': 32, '_time': 0.00029540061950683594, '_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. | o0 o1 o2 o1 c0 o0 c0 c1 c2 c1 o3 c3 o1 o2 c2 o0 c0 o3 c3 c1 o0 o2 c0 c2 o1 o0 c0 o2 o0 c0 c1 c2 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003132820129394531, '_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)
x24 x35 x47 x16 x52 x15 x29 x53 x6 x57 x8 x45 x15 x6 x3 x7 x41 x18 x13 x59 x9 x44 x21 x62 x41 x58 x56 x27 x28 x28 x39 x58 | x24 x35 x47 x16 x52 x15 x29 x53 x6 x57 x8 x45 x3 x7 x41 x18 x13 x59 x9 x44 x21 x62 x58 x56 x27 x28 x39 | {'task': 'set', 'seq': ['x24', 'x35', 'x47', 'x16', 'x52', 'x15', 'x29', 'x53', 'x6', 'x57', 'x8', 'x45', 'x15', 'x6', 'x3', 'x7', 'x41', 'x18', 'x13', 'x59', 'x9', 'x44', 'x21', 'x62', 'x41', 'x58', 'x56', 'x27', 'x28', 'x28', 'x39', 'x58'], 'k': 4, 'n': 32, '_time': 0.00042510032653808594, '_task': 'basic_procedural'... | set | 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 o0 o2 o3 o3 o0 c3 o3 c3 o3 c1 c3 c3 o3 o1 c2 o3 o2 o2 o3 o0 c1 c0 c2 c2 c3 c0 c0 c3 c3 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003235340118408203, '_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)
x33 x45 x49 x42 x9 x56 x25 x24 x16 x2 x32 x52 x13 x20 x39 x54 x41 x15 x36 x59 x40 x44 x1 x50 x52 x33 x62 x42 x16 x33 x13 x34 | x33 x45 x49 x42 x9 x56 x25 x24 x16 x2 x32 x52 x13 x20 x39 x54 x41 x15 x36 x59 x40 x44 x1 x50 x62 x34 | {'task': 'set', 'seq': ['x33', 'x45', 'x49', 'x42', 'x9', 'x56', 'x25', 'x24', 'x16', 'x2', 'x32', 'x52', 'x13', 'x20', 'x39', 'x54', 'x41', 'x15', 'x36', 'x59', 'x40', 'x44', 'x1', 'x50', 'x52', 'x33', 'x62', 'x42', 'x16', 'x33', 'x13', 'x34'], 'k': 4, 'n': 32, '_time': 0.00042319297790527344, '_task': 'basic_procedur... | 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 c3 o1 o3 c3 c1 o0 c0 o3 o1 o3 c3 c1 o2 c2 c3 o3 c3 o3 o2 o3 o2 o0 c0 o3 c3 c2 o0 c0 c3 c2 c3 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002892017364501953, '_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)
x11 x38 x36 x17 x42 x9 x18 x40 x8 x10 x20 x1 x62 x23 x26 x50 x35 x30 x26 x6 x46 x11 x16 x47 x38 x43 x7 x3 x64 x19 x47 x36 | x36 x47 x19 x64 x3 x7 x43 x38 x47 x16 x11 x46 x6 x26 x30 x35 x50 x26 x23 x62 x1 x20 x10 x8 x40 x18 x9 x42 x17 x36 x38 x11 | {'task': 'reverse', 'seq': ['x11', 'x38', 'x36', 'x17', 'x42', 'x9', 'x18', 'x40', 'x8', 'x10', 'x20', 'x1', 'x62', 'x23', 'x26', 'x50', 'x35', 'x30', 'x26', 'x6', 'x46', 'x11', 'x16', 'x47', 'x38', 'x43', 'x7', 'x3', 'x64', 'x19', 'x47', 'x36'], 'k': 4, 'n': 32, '_time': 0.00041222572326660156, '_task': 'basic_procedu... | reverse | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x49 x1 x58 x2 x34 x39 x2 x43 x59 x45 x53 x41 x41 x44 x34 x35 x28 x60 x12 x33 x10 x49 x14 x58 x58 x17 x35 x1 x25 x18 x50 x4 | x49 x1 x58 x2 x34 x39 x43 x59 x45 x53 x41 x44 x35 x28 x60 x12 x33 x10 x14 x17 x25 x18 x50 x4 | {'task': 'set', 'seq': ['x49', 'x1', 'x58', 'x2', 'x34', 'x39', 'x2', 'x43', 'x59', 'x45', 'x53', 'x41', 'x41', 'x44', 'x34', 'x35', 'x28', 'x60', 'x12', 'x33', 'x10', 'x49', 'x14', 'x58', 'x58', 'x17', 'x35', 'x1', 'x25', 'x18', 'x50', 'x4'], 'k': 4, 'n': 32, '_time': 0.0002751350402832031, '_task': 'basic_procedural'... | set | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x4 x49 x17 x31 x23 x22 x26 x18 x1 x20 x57 x46 x18 x43 x24 x35 x11 x17 x34 x52 x28 x27 x55 x5 x53 x24 x37 x57 x19 x20 x7 x21 | x1 x4 x5 x7 x11 x17 x17 x18 x18 x19 x20 x20 x21 x22 x23 x24 x24 x26 x27 x28 x31 x34 x35 x37 x43 x46 x49 x52 x53 x55 x57 x57 | {'task': 'sort', 'seq': ['x4', 'x49', 'x17', 'x31', 'x23', 'x22', 'x26', 'x18', 'x1', 'x20', 'x57', 'x46', 'x18', 'x43', 'x24', 'x35', 'x11', 'x17', 'x34', 'x52', 'x28', 'x27', 'x55', 'x5', 'x53', 'x24', 'x37', 'x57', 'x19', 'x20', 'x7', 'x21'], 'k': 4, 'n': 32, '_time': 0.00028824806213378906, '_task': 'basic_procedur... | 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 o1 o3 o1 c3 o0 o0 o0 c1 c1 o0 c1 c0 o2 o3 c2 o2 c3 c0 c1 c0 c0 c2 o0 c0 o0 o2 o2 c2 c0 c2 | {'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 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x57 x28 x23 x63 x24 x35 x9 x21 x45 x59 x3 x18 x58 x32 x51 x39 x13 x62 x49 x34 x37 x19 x50 x64 x34 x49 x1 x21 x18 x21 x10 x48 | x1 x3 x9 x10 x13 x18 x18 x19 x21 x21 x21 x23 x24 x28 x32 x34 x34 x35 x37 x39 x45 x48 x49 x49 x50 x51 x57 x58 x59 x62 x63 x64 | {'task': 'sort', 'seq': ['x57', 'x28', 'x23', 'x63', 'x24', 'x35', 'x9', 'x21', 'x45', 'x59', 'x3', 'x18', 'x58', 'x32', 'x51', 'x39', 'x13', 'x62', 'x49', 'x34', 'x37', 'x19', 'x50', 'x64', 'x34', 'x49', 'x1', 'x21', 'x18', 'x21', 'x10', 'x48'], 'k': 4, 'n': 32, '_time': 0.0002923011779785156, '_task': 'basic_procedur... | sort | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x9 x57 x35 x18 x39 x13 x27 x37 x28 x38 x62 x38 x17 x16 x37 x56 x14 x15 x34 x52 x29 x55 x12 x14 x32 x42 x7 x48 x35 x63 x2 x41 | x9 x57 x35 x18 x39 x13 x27 x37 x28 x38 x62 x38 x17 x16 x37 x56 x14 x15 x34 x52 x29 x55 x12 x14 x32 x42 x7 x48 x35 x63 x2 x41 | {'task': 'identity', 'seq': ['x9', 'x57', 'x35', 'x18', 'x39', 'x13', 'x27', 'x37', 'x28', 'x38', 'x62', 'x38', 'x17', 'x16', 'x37', 'x56', 'x14', 'x15', 'x34', 'x52', 'x29', 'x55', 'x12', 'x14', 'x32', 'x42', 'x7', 'x48', 'x35', 'x63', 'x2', 'x41'], 'k': 4, 'n': 32, '_time': 0.0002791881561279297, '_task': 'basic_proc... | identity | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x13 x36 x50 x44 x15 x48 x62 x46 x64 x18 x33 x30 x7 x55 x15 x20 x23 x2 x43 x30 x52 x4 x50 x28 x27 x20 x23 x21 x17 x22 x27 x44 | x2 x4 x7 x13 x15 x15 x17 x18 x20 x20 x21 x22 x23 x23 x27 x27 x28 x30 x30 x33 x36 x43 x44 x44 x46 x48 x50 x50 x52 x55 x62 x64 | {'task': 'sort', 'seq': ['x13', 'x36', 'x50', 'x44', 'x15', 'x48', 'x62', 'x46', 'x64', 'x18', 'x33', 'x30', 'x7', 'x55', 'x15', 'x20', 'x23', 'x2', 'x43', 'x30', 'x52', 'x4', 'x50', 'x28', 'x27', 'x20', 'x23', 'x21', 'x17', 'x22', 'x27', 'x44'], 'k': 4, 'n': 32, '_time': 0.00040531158447265625, '_task': 'basic_procedu... | 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)
x55 x41 x41 x27 x40 x42 x35 x22 x49 x41 x42 x34 x15 x3 x22 x10
(B)
x47 x46 x4 x28 x6 x62 x40 x56 x1 x11 x20 x57 x3 x35 x48 x44 | x55 x41 x27 x40 x42 x35 x22 x49 x34 x15 x3 x10 x47 x46 x4 x28 x6 x62 x56 x1 x11 x20 x57 x48 x44 | {'task': 'union', 'seq': [['x55', 'x41', 'x41', 'x27', 'x40', 'x42', 'x35', 'x22', 'x49', 'x41', 'x42', 'x34', 'x15', 'x3', 'x22', 'x10'], ['x47', 'x46', 'x4', 'x28', 'x6', 'x62', 'x40', 'x56', 'x1', 'x11', 'x20', 'x57', 'x3', 'x35', 'x48', 'x44']], 'k': 4, 'n': 32, '_time': 0.00029397010803222656, '_task': 'basic_proc... | union | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x40 x12 x43 x59 x57 x51 x19 x23 x44 x1 x47 x40 x28 x29 x16 x64 x21 x61 x25 x37 x17 x9 x11 x52 x45 x42 x35 x24 x2 x21 x26 x5 | x40 x12 x43 x59 x57 x51 x19 x23 x44 x1 x47 x40 x28 x29 x16 x64 x21 x61 x25 x37 x17 x9 x11 x52 x45 x42 x35 x24 x2 x21 x26 x5 | {'task': 'identity', 'seq': ['x40', 'x12', 'x43', 'x59', 'x57', 'x51', 'x19', 'x23', 'x44', 'x1', 'x47', 'x40', 'x28', 'x29', 'x16', 'x64', 'x21', 'x61', 'x25', 'x37', 'x17', 'x9', 'x11', 'x52', 'x45', 'x42', 'x35', 'x24', 'x2', 'x21', 'x26', 'x5'], 'k': 4, 'n': 32, '_time': 0.0002739429473876953, '_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)
x31 x56 x14 x58 x17 x64 x4 x54 x26 x2 x33 x57 x28 x47 x51 x23
(B)
x63 x24 x8 x8 x4 x34 x45 x32 x2 x41 x56 x58 x57 x43 x54 x60 | x31 x56 x14 x58 x17 x64 x4 x54 x26 x2 x33 x57 x28 x47 x51 x23 x63 x24 x8 x34 x45 x32 x41 x43 x60 | {'task': 'union', 'seq': [['x31', 'x56', 'x14', 'x58', 'x17', 'x64', 'x4', 'x54', 'x26', 'x2', 'x33', 'x57', 'x28', 'x47', 'x51', 'x23'], ['x63', 'x24', 'x8', 'x8', 'x4', 'x34', 'x45', 'x32', 'x2', 'x41', 'x56', 'x58', 'x57', 'x43', 'x54', 'x60']], 'k': 4, 'n': 32, '_time': 0.0004489421844482422, '_task': 'basic_proced... | 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. | o0 o1 o3 c3 c0 c1 o1 o3 c1 o1 c1 o0 c3 o1 o3 c0 c1 o1 o2 o2 c2 o2 c1 o3 o0 c3 c3 c0 c2 c2 o2 c2 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00045108795166015625, '_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)
x44 x47 x21 x63 x55 x61 x9 x28 x11 x12 x59 x44 x60 x37 x14 x33 x28 x55 x60 x1 x61 x38 x51 x37 x2 x3 x7 x40 x5 x32 x7 x36
(TARGET)
x55 | x44 x47 x21 x63 x61 x9 x28 x11 x12 x59 x44 x60 x37 x14 x33 x28 x55 x60 x1 x61 x38 x51 x37 x2 x3 x7 x40 x5 x32 x7 x36 | {'task': 'delete', 'seq': [['x44', 'x47', 'x21', 'x63', 'x55', 'x61', 'x9', 'x28', 'x11', 'x12', 'x59', 'x44', 'x60', 'x37', 'x14', 'x33', 'x28', 'x55', 'x60', 'x1', 'x61', 'x38', 'x51', 'x37', 'x2', 'x3', 'x7', 'x40', 'x5', 'x32', 'x7', 'x36'], 'x55'], 'k': 4, 'n': 32, '_time': 0.0002880096435546875, '_task': 'basic_p... | delete | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x63 x52 x44 x3 x51 x44 x50 x42 x26 x30 x19 x51 x23 x26 x8 x19 x40 x27 x38 x11 x16 x12 x35 x10 x23 x39 x59 x37 x15 x49 x1 x20 | x1 x3 x8 x10 x11 x12 x15 x16 x19 x19 x20 x23 x23 x26 x26 x27 x30 x35 x37 x38 x39 x40 x42 x44 x44 x49 x50 x51 x51 x52 x59 x63 | {'task': 'sort', 'seq': ['x63', 'x52', 'x44', 'x3', 'x51', 'x44', 'x50', 'x42', 'x26', 'x30', 'x19', 'x51', 'x23', 'x26', 'x8', 'x19', 'x40', 'x27', 'x38', 'x11', 'x16', 'x12', 'x35', 'x10', 'x23', 'x39', 'x59', 'x37', 'x15', 'x49', 'x1', 'x20'], 'k': 4, 'n': 32, '_time': 0.0002868175506591797, '_task': 'basic_procedur... | sort | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x1 x55 x1 x38 x15 x49 x34 x2 x46 x3 x33 x40 x60 x29 x37 x61 x7 x17 x42 x53 x46 x33 x19 x2 x17 x44 x31 x47 x35 x59 x54 x19 | x1 x55 x1 x38 x15 x49 x34 x2 x46 x3 x33 x40 x60 x29 x37 x61 x7 x17 x42 x53 x46 x33 x19 x2 x17 x44 x31 x47 x35 x59 x54 x19 | {'task': 'identity', 'seq': ['x1', 'x55', 'x1', 'x38', 'x15', 'x49', 'x34', 'x2', 'x46', 'x3', 'x33', 'x40', 'x60', 'x29', 'x37', 'x61', 'x7', 'x17', 'x42', 'x53', 'x46', 'x33', 'x19', 'x2', 'x17', 'x44', 'x31', 'x47', 'x35', 'x59', 'x54', 'x19'], 'k': 4, 'n': 32, '_time': 0.00041365623474121094, '_task': 'basic_proced... | identity | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x6 x6 x1 x48 x57 x13 x5 x27 x4 x45 x5 x47 x22 x44 x54 x59 x55 x57 x27 x30 x58 x15 x35 x19 x55 x45 x16 x40 x29 x41 x17 x56 | x6 x1 x48 x57 x13 x5 x27 x4 x45 x47 x22 x44 x54 x59 x55 x30 x58 x15 x35 x19 x16 x40 x29 x41 x17 x56 | {'task': 'set', 'seq': ['x6', 'x6', 'x1', 'x48', 'x57', 'x13', 'x5', 'x27', 'x4', 'x45', 'x5', 'x47', 'x22', 'x44', 'x54', 'x59', 'x55', 'x57', 'x27', 'x30', 'x58', 'x15', 'x35', 'x19', 'x55', 'x45', 'x16', 'x40', 'x29', 'x41', 'x17', 'x56'], 'k': 4, 'n': 32, '_time': 0.0004181861877441406, '_task': 'basic_procedural',... | set | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x36 x24 x32 x44 x49 x42 x54 x54 x49 x18 x3 x44 x7 x24 x16 x47 x30 x5 x12 x21 x3 x36 x44 x6 x10 x40 x47 x63 x54 x10 x4 x57 | x36 x24 x32 x44 x49 x42 x54 x18 x3 x7 x16 x47 x30 x5 x12 x21 x6 x10 x40 x63 x4 x57 | {'task': 'set', 'seq': ['x36', 'x24', 'x32', 'x44', 'x49', 'x42', 'x54', 'x54', 'x49', 'x18', 'x3', 'x44', 'x7', 'x24', 'x16', 'x47', 'x30', 'x5', 'x12', 'x21', 'x3', 'x36', 'x44', 'x6', 'x10', 'x40', 'x47', 'x63', 'x54', 'x10', 'x4', 'x57'], 'k': 4, 'n': 32, '_time': 0.00027489662170410156, '_task': 'basic_procedural'... | set | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x9 x61 x14 x48 x46 x45 x16 x21 x2 x31 x60 x28 x23 x29 x41 x42 x13 x40 x14 x46 x25 x63 x38 x5 x34 x23 x60 x6 x46 x30 x48 x32 | x9 x61 x14 x48 x46 x45 x16 x21 x2 x31 x60 x28 x23 x29 x41 x42 x13 x40 x25 x63 x38 x5 x34 x6 x30 x32 | {'task': 'set', 'seq': ['x9', 'x61', 'x14', 'x48', 'x46', 'x45', 'x16', 'x21', 'x2', 'x31', 'x60', 'x28', 'x23', 'x29', 'x41', 'x42', 'x13', 'x40', 'x14', 'x46', 'x25', 'x63', 'x38', 'x5', 'x34', 'x23', 'x60', 'x6', 'x46', 'x30', 'x48', 'x32'], 'k': 4, 'n': 32, '_time': 0.00027680397033691406, '_task': 'basic_procedura... | set | instruct | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.