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 x35 x23 x36 x44 x10 x27 x24 x18 x59 x14 x21 x34 x35 x18 x50 x28 x18 x4 x62 x7 x53 x64 x20 x30 x13 x59 x31 x22 x39 x17 x26 | x26 x17 x39 x22 x31 x59 x13 x30 x20 x64 x53 x7 x62 x4 x18 x28 x50 x18 x35 x34 x21 x14 x59 x18 x24 x27 x10 x44 x36 x23 x35 x27 | {'task': 'reverse', 'seq': ['x27', 'x35', 'x23', 'x36', 'x44', 'x10', 'x27', 'x24', 'x18', 'x59', 'x14', 'x21', 'x34', 'x35', 'x18', 'x50', 'x28', 'x18', 'x4', 'x62', 'x7', 'x53', 'x64', 'x20', 'x30', 'x13', 'x59', 'x31', 'x22', 'x39', 'x17', 'x26'], 'k': 4, 'n': 32, '_time': 0.0002999305725097656, '_task': 'basic_proc... | 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 o0 o3 c3 o2 o3 c0 c2 o0 c0 c1 o3 o1 o3 c3 c3 o2 c1 c3 o3 o3 c2 c3 c3 o3 o3 o0 o0 c3 c0 c3 c0 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0004508495330810547, '_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)
x42 x34 x42 x27 x17 x36 x57 x63 x24 x63 x30 x18 x58 x3 x23 x3 x7 x17 x15 x38 x9 x1 x38 x27 x52 x15 x40 x55 x34 x36 x17 x44 | x42 x34 x42 x27 x17 x36 x57 x63 x24 x63 x30 x18 x58 x3 x23 x3 x7 x17 x15 x38 x9 x1 x38 x27 x52 x15 x40 x55 x34 x36 x17 x44 | {'task': 'identity', 'seq': ['x42', 'x34', 'x42', 'x27', 'x17', 'x36', 'x57', 'x63', 'x24', 'x63', 'x30', 'x18', 'x58', 'x3', 'x23', 'x3', 'x7', 'x17', 'x15', 'x38', 'x9', 'x1', 'x38', 'x27', 'x52', 'x15', 'x40', 'x55', 'x34', 'x36', 'x17', 'x44'], 'k': 4, 'n': 32, '_time': 0.000274658203125, '_task': 'basic_procedural... | identity | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x52 x62 x36 x31 x13 x20 x53 x12 x58 x58 x53 x19 x63 x37 x37 x52 x47 x10 x33 x61 x1 x18 x24 x53 x44 x45 x17 x14 x3 x17 x56 x35 | x1 x3 x10 x12 x13 x14 x17 x17 x18 x19 x20 x24 x31 x33 x35 x36 x37 x37 x44 x45 x47 x52 x52 x53 x53 x53 x56 x58 x58 x61 x62 x63 | {'task': 'sort', 'seq': ['x52', 'x62', 'x36', 'x31', 'x13', 'x20', 'x53', 'x12', 'x58', 'x58', 'x53', 'x19', 'x63', 'x37', 'x37', 'x52', 'x47', 'x10', 'x33', 'x61', 'x1', 'x18', 'x24', 'x53', 'x44', 'x45', 'x17', 'x14', 'x3', 'x17', 'x56', 'x35'], 'k': 4, 'n': 32, '_time': 0.0004010200500488281, '_task': 'basic_procedu... | 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 x35; PUSH x59; PUSH x41; POP; PUSH x47; PUSH x11; POP; PUSH x24; PUSH x2; PUSH x59; PUSH x31; PUSH x22; POP; PUSH x26; PUSH x23; PUSH x19; PUSH x11; PUSH ... | x51 x25 x2 x11 x19 x23 x26 x31 x59 x2 x24 x47 x59 x35 | {'task': 'stack', 'seq': ['PUSH x35', 'PUSH x59', 'PUSH x41', 'POP', 'PUSH x47', 'PUSH x11', 'POP', 'PUSH x24', 'PUSH x2', 'PUSH x59', 'PUSH x31', 'PUSH x22', 'POP', 'PUSH x26', 'PUSH x23', 'PUSH x19', 'PUSH x11', 'PUSH x2', 'PUSH x25', 'PUSH x51', 'PUSH x32', 'PUSH x10', 'PUSH x26', 'POP', 'POP', 'PUSH x19', 'POP', 'P... | 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 x29; POP; PUSH x37; PUSH x59; PUSH x54; PUSH x41; POP; PUSH x33; POP; PUSH x2; POP; POP; POP; PUSH x32; PUSH x51; PUSH x22; PUSH x64; PUSH x11; PUSH x35; ... | x32 x37 | {'task': 'stack', 'seq': ['PUSH x29', 'POP', 'PUSH x37', 'PUSH x59', 'PUSH x54', 'PUSH x41', 'POP', 'PUSH x33', 'POP', 'PUSH x2', 'POP', 'POP', 'POP', 'PUSH x32', 'PUSH x51', 'PUSH x22', 'PUSH x64', 'PUSH x11', 'PUSH x35', 'POP', 'POP', 'PUSH x41', 'POP', 'POP', 'POP', 'PUSH x50', 'POP', 'PUSH x63', 'POP', 'PUSH x31', ... | stack | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x34 x62 x35 x20 x2 x52 x32 x15 x62 x56 x4 x30 x64 x55 x11 x43 x54 x7 x3 x29 x18 x63 x31 x17 x25 x44 x7 x21 x35 x45 x21 x13 | x13 x21 x45 x35 x21 x7 x44 x25 x17 x31 x63 x18 x29 x3 x7 x54 x43 x11 x55 x64 x30 x4 x56 x62 x15 x32 x52 x2 x20 x35 x62 x34 | {'task': 'reverse', 'seq': ['x34', 'x62', 'x35', 'x20', 'x2', 'x52', 'x32', 'x15', 'x62', 'x56', 'x4', 'x30', 'x64', 'x55', 'x11', 'x43', 'x54', 'x7', 'x3', 'x29', 'x18', 'x63', 'x31', 'x17', 'x25', 'x44', 'x7', 'x21', 'x35', 'x45', 'x21', 'x13'], 'k': 4, 'n': 32, '_time': 0.0004146099090576172, '_task': 'basic_procedu... | reverse | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x57 x57 x27 x22 x28 x55 x28 x14 x8 x1 x46 x55 x63 x45 x51 x56 x26 x26 x33 x1 x56 x20 x64 x59 x45 x2 x49 x10 x15 x5 x43 x34 | x34 x43 x5 x15 x10 x49 x2 x45 x59 x64 x20 x56 x1 x33 x26 x26 x56 x51 x45 x63 x55 x46 x1 x8 x14 x28 x55 x28 x22 x27 x57 x57 | {'task': 'reverse', 'seq': ['x57', 'x57', 'x27', 'x22', 'x28', 'x55', 'x28', 'x14', 'x8', 'x1', 'x46', 'x55', 'x63', 'x45', 'x51', 'x56', 'x26', 'x26', 'x33', 'x1', 'x56', 'x20', 'x64', 'x59', 'x45', 'x2', 'x49', 'x10', 'x15', 'x5', 'x43', 'x34'], 'k': 4, 'n': 32, '_time': 0.0003898143768310547, '_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 x35; PUSH x55; PUSH x8; PUSH x63; PUSH x57; PUSH x56; POP; PUSH x6; PUSH x34; PUSH x10; PUSH x23; PUSH x1; PUSH x9; PUSH x63; PUSH x23; PUSH x50; PUSH x57... | x10 x34 x6 x57 x63 x8 x55 x35 | {'task': 'stack', 'seq': ['PUSH x35', 'PUSH x55', 'PUSH x8', 'PUSH x63', 'PUSH x57', 'PUSH x56', 'POP', 'PUSH x6', 'PUSH x34', 'PUSH x10', 'PUSH x23', 'PUSH x1', 'PUSH x9', 'PUSH x63', 'PUSH x23', 'PUSH x50', 'PUSH x57', 'POP', 'PUSH x12', 'PUSH x28', 'PUSH x45', 'PUSH x31', 'POP', 'POP', 'POP', 'POP', 'POP', 'POP', 'P... | stack | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x14 x9 x22 x40 x62 x58 x21 x44 x10 x42 x31 x46 x17 x40 x4 x55 x7 x7 x58 x14 x56 x38 x30 x14 x64 x37 x23 x1 x63 x54 x35 x63 | x63 x35 x54 x63 x1 x23 x37 x64 x14 x30 x38 x56 x14 x58 x7 x7 x55 x4 x40 x17 x46 x31 x42 x10 x44 x21 x58 x62 x40 x22 x9 x14 | {'task': 'reverse', 'seq': ['x14', 'x9', 'x22', 'x40', 'x62', 'x58', 'x21', 'x44', 'x10', 'x42', 'x31', 'x46', 'x17', 'x40', 'x4', 'x55', 'x7', 'x7', 'x58', 'x14', 'x56', 'x38', 'x30', 'x14', 'x64', 'x37', 'x23', 'x1', 'x63', 'x54', 'x35', 'x63'], 'k': 4, 'n': 32, '_time': 0.0002753734588623047, '_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)
x35 x4 x63 x5 x25 x37 x5 x32 x6 x30 x5 x53 x50 x39 x17 x53
(B)
x51 x15 x15 x35 x30 x18 x21 x22 x3 x13 x51 x21 x33 x50 x4 x37 | x35 x4 x63 x5 x25 x37 x32 x6 x30 x53 x50 x39 x17 x51 x15 x18 x21 x22 x3 x13 x33 | {'task': 'union', 'seq': [['x35', 'x4', 'x63', 'x5', 'x25', 'x37', 'x5', 'x32', 'x6', 'x30', 'x5', 'x53', 'x50', 'x39', 'x17', 'x53'], ['x51', 'x15', 'x15', 'x35', 'x30', 'x18', 'x21', 'x22', 'x3', 'x13', 'x51', 'x21', 'x33', 'x50', 'x4', 'x37']], 'k': 4, 'n': 32, '_time': 0.0002942085266113281, '_task': 'basic_procedu... | union | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x35 x59 x55 x54 x4 x16 x53 x13 x2 x15 x31 x50 x13 x8 x38 x6 x4 x49 x21 x33 x3 x34 x27 x22 x43 x59 x16 x40 x1 x50 x55 x42 | x35 x59 x55 x54 x4 x16 x53 x13 x2 x15 x31 x50 x8 x38 x6 x49 x21 x33 x3 x34 x27 x22 x43 x40 x1 x42 | {'task': 'set', 'seq': ['x35', 'x59', 'x55', 'x54', 'x4', 'x16', 'x53', 'x13', 'x2', 'x15', 'x31', 'x50', 'x13', 'x8', 'x38', 'x6', 'x4', 'x49', 'x21', 'x33', 'x3', 'x34', 'x27', 'x22', 'x43', 'x59', 'x16', 'x40', 'x1', 'x50', 'x55', 'x42'], 'k': 4, 'n': 32, '_time': 0.00033736228942871094, '_task': 'basic_procedural',... | set | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x18 x26 x6 x32 x14 x6 x62 x31 x57 x50 x8 x18 x48 x38 x63 x50 x10 x37 x46 x45 x58 x18 x10 x36 x20 x12 x56 x13 x13 x19 x27 x2
(TARGET)
x2 | x18 x26 x6 x32 x14 x6 x62 x31 x57 x50 x8 x18 x48 x38 x63 x50 x10 x37 x46 x45 x58 x18 x10 x36 x20 x12 x56 x13 x13 x19 x27 | {'task': 'delete', 'seq': [['x18', 'x26', 'x6', 'x32', 'x14', 'x6', 'x62', 'x31', 'x57', 'x50', 'x8', 'x18', 'x48', 'x38', 'x63', 'x50', 'x10', 'x37', 'x46', 'x45', 'x58', 'x18', 'x10', 'x36', 'x20', 'x12', 'x56', 'x13', 'x13', 'x19', 'x27', 'x2'], 'x2'], 'k': 4, 'n': 32, '_time': 0.0004341602325439453, '_task': 'basic... | delete | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x16 x44 x23 x50 x41 x38 x17 x21 x62 x34 x26 x39 x14 x60 x45 x49 x53 x10 x64 x60 x16 x22 x43 x50 x42 x39 x30 x51 x47 x6 x26 x25 | x16 x44 x23 x50 x41 x38 x17 x21 x62 x34 x26 x39 x14 x60 x45 x49 x53 x10 x64 x22 x43 x42 x30 x51 x47 x6 x25 | {'task': 'set', 'seq': ['x16', 'x44', 'x23', 'x50', 'x41', 'x38', 'x17', 'x21', 'x62', 'x34', 'x26', 'x39', 'x14', 'x60', 'x45', 'x49', 'x53', 'x10', 'x64', 'x60', 'x16', 'x22', 'x43', 'x50', 'x42', 'x39', 'x30', 'x51', 'x47', 'x6', 'x26', 'x25'], 'k': 4, 'n': 32, '_time': 0.0002808570861816406, '_task': 'basic_procedu... | set | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x53 x6 x23 x61 x17 x8 x18 x48 x32 x26 x29 x7 x53 x59 x9 x23 x21 x44 x61 x3 x57 x42 x6 x59 x56 x33 x14 x29 x35 x2 x43 x37 | x53 x6 x23 x61 x17 x8 x18 x48 x32 x26 x29 x7 x53 x59 x9 x23 x21 x44 x61 x3 x57 x42 x6 x59 x56 x33 x14 x29 x35 x2 x43 x37 | {'task': 'identity', 'seq': ['x53', 'x6', 'x23', 'x61', 'x17', 'x8', 'x18', 'x48', 'x32', 'x26', 'x29', 'x7', 'x53', 'x59', 'x9', 'x23', 'x21', 'x44', 'x61', 'x3', 'x57', 'x42', 'x6', 'x59', 'x56', 'x33', 'x14', 'x29', 'x35', 'x2', 'x43', 'x37'], 'k': 4, 'n': 32, '_time': 0.0003287792205810547, '_task': 'basic_procedur... | identity | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x60 x41 x45 x58 x46 x10 x29 x23 x42 x18 x32 x33 x16 x57 x2 x9 x9 x11 x3 x50 x30 x31 x53 x60 x4 x54 x21 x22 x12 x21 x17 x10 | x60 x41 x45 x58 x46 x10 x29 x23 x42 x18 x32 x33 x16 x57 x2 x9 x11 x3 x50 x30 x31 x53 x4 x54 x21 x22 x12 x17 | {'task': 'set', 'seq': ['x60', 'x41', 'x45', 'x58', 'x46', 'x10', 'x29', 'x23', 'x42', 'x18', 'x32', 'x33', 'x16', 'x57', 'x2', 'x9', 'x9', 'x11', 'x3', 'x50', 'x30', 'x31', 'x53', 'x60', 'x4', 'x54', 'x21', 'x22', 'x12', 'x21', 'x17', 'x10'], 'k': 4, 'n': 32, '_time': 0.0002810955047607422, '_task': 'basic_procedural'... | set | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x1 x28 x25 x17 x26 x18 x36 x35 x56 x33 x6 x64 x18 x29 x6 x9 x62 x12 x27 x50 x61 x4 x8 x44 x45 x48 x48 x4 x61 x24 x27 x36 | x36 x27 x24 x61 x4 x48 x48 x45 x44 x8 x4 x61 x50 x27 x12 x62 x9 x6 x29 x18 x64 x6 x33 x56 x35 x36 x18 x26 x17 x25 x28 x1 | {'task': 'reverse', 'seq': ['x1', 'x28', 'x25', 'x17', 'x26', 'x18', 'x36', 'x35', 'x56', 'x33', 'x6', 'x64', 'x18', 'x29', 'x6', 'x9', 'x62', 'x12', 'x27', 'x50', 'x61', 'x4', 'x8', 'x44', 'x45', 'x48', 'x48', 'x4', 'x61', 'x24', 'x27', 'x36'], 'k': 4, 'n': 32, '_time': 0.0002739429473876953, '_task': 'basic_procedura... | reverse | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x16 x57 x25 x11 x9 x58 x47 x36 x18 x58 x16 x53 x4 x14 x55 x38 x46 x24 x24 x34 x52 x16 x6 x39 x49 x30 x62 x27 x12 x47 x52 x13 | x4 x6 x9 x11 x12 x13 x14 x16 x16 x16 x18 x24 x24 x25 x27 x30 x34 x36 x38 x39 x46 x47 x47 x49 x52 x52 x53 x55 x57 x58 x58 x62 | {'task': 'sort', 'seq': ['x16', 'x57', 'x25', 'x11', 'x9', 'x58', 'x47', 'x36', 'x18', 'x58', 'x16', 'x53', 'x4', 'x14', 'x55', 'x38', 'x46', 'x24', 'x24', 'x34', 'x52', 'x16', 'x6', 'x39', 'x49', 'x30', 'x62', 'x27', 'x12', 'x47', 'x52', 'x13'], 'k': 4, 'n': 32, '_time': 0.00043487548828125, '_task': 'basic_procedural... | sort | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x10 x13 x16 x23 x61 x23 x29 x52 x40 x22 x28 x61 x35 x2 x50 x1 x9 x29 x54 x21 x63 x53 x41 x27 x36 x5 x11 x43 x23 x22 x56 x27 | x10 x13 x16 x23 x61 x29 x52 x40 x22 x28 x35 x2 x50 x1 x9 x54 x21 x63 x53 x41 x27 x36 x5 x11 x43 x56 | {'task': 'set', 'seq': ['x10', 'x13', 'x16', 'x23', 'x61', 'x23', 'x29', 'x52', 'x40', 'x22', 'x28', 'x61', 'x35', 'x2', 'x50', 'x1', 'x9', 'x29', 'x54', 'x21', 'x63', 'x53', 'x41', 'x27', 'x36', 'x5', 'x11', 'x43', 'x23', 'x22', 'x56', 'x27'], 'k': 4, 'n': 32, '_time': 0.00033736228942871094, '_task': 'basic_procedura... | set | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x23 x62 x10 x24 x20 x36 x16 x5 x52 x16 x26 x18 x45 x26 x63 x52 x37 x28 x26 x42 x9 x6 x11 x2 x54 x10 x16 x52 x58 x21 x52 x32
(TARGET)
x54 | x23 x62 x10 x24 x20 x36 x16 x5 x52 x16 x26 x18 x45 x26 x63 x52 x37 x28 x26 x42 x9 x6 x11 x2 x10 x16 x52 x58 x21 x52 x32 | {'task': 'delete', 'seq': [['x23', 'x62', 'x10', 'x24', 'x20', 'x36', 'x16', 'x5', 'x52', 'x16', 'x26', 'x18', 'x45', 'x26', 'x63', 'x52', 'x37', 'x28', 'x26', 'x42', 'x9', 'x6', 'x11', 'x2', 'x54', 'x10', 'x16', 'x52', 'x58', 'x21', 'x52', 'x32'], 'x54'], 'k': 4, 'n': 32, '_time': 0.00026726722717285156, '_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 o0 o3 o2 c0 o3 o0 o2 o1 c3 o3 c1 o0 c0 c3 o2 o2 o2 o0 c2 o1 c0 o2 c0 c1 c0 c2 c3 c2 c2 c2 c2 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002970695495605469, '_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 o0 c0 o3 c3 o3 c3 o2 o2 c2 c2 o2 c2 o3 c3 o2 c2 o3 o0 o0 o1 c1 c0 c0 o1 o2 c2 c1 o0 c0 c3 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003829002380371094, '_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)
x9 x45 x38 x50 x20 x53 x48 x51 x13 x42 x50 x17 x37 x60 x16 x51 x45 x26 x30 x45 x38 x43 x38 x44 x39 x56 x13 x21 x52 x55 x63 x47 | x9 x13 x13 x16 x17 x20 x21 x26 x30 x37 x38 x38 x38 x39 x42 x43 x44 x45 x45 x45 x47 x48 x50 x50 x51 x51 x52 x53 x55 x56 x60 x63 | {'task': 'sort', 'seq': ['x9', 'x45', 'x38', 'x50', 'x20', 'x53', 'x48', 'x51', 'x13', 'x42', 'x50', 'x17', 'x37', 'x60', 'x16', 'x51', 'x45', 'x26', 'x30', 'x45', 'x38', 'x43', 'x38', 'x44', 'x39', 'x56', 'x13', 'x21', 'x52', 'x55', 'x63', 'x47'], 'k': 4, 'n': 32, '_time': 0.0003485679626464844, '_task': 'basic_proced... | sort | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x21 x26 x20 x12 x17 x30 x14 x37 x59 x15 x21 x43 x64 x50 x39 x25 x24 x24 x16 x18 x17 x33 x10 x6 x34 x48 x60 x38 x10 x5 x18 x43
(TARGET)
x1 | x21 x26 x20 x12 x17 x30 x14 x37 x59 x15 x21 x43 x64 x50 x39 x25 x24 x24 x16 x18 x17 x33 x10 x6 x34 x48 x60 x38 x10 x5 x18 x43 | {'task': 'delete', 'seq': [['x21', 'x26', 'x20', 'x12', 'x17', 'x30', 'x14', 'x37', 'x59', 'x15', 'x21', 'x43', 'x64', 'x50', 'x39', 'x25', 'x24', 'x24', 'x16', 'x18', 'x17', 'x33', 'x10', 'x6', 'x34', 'x48', 'x60', 'x38', 'x10', 'x5', 'x18', 'x43'], 'x1'], 'k': 4, 'n': 32, '_time': 0.0003039836883544922, '_task': 'bas... | delete | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x64 x52 x1 x33 x51 x53 x32 x49 x24 x31 x33 x34 x29 x8 x30 x1 x41 x53 x64 x54 x64 x4 x8 x7 x39 x64 x4 x41 x4 x43 x51 x43 | x43 x51 x43 x4 x41 x4 x64 x39 x7 x8 x4 x64 x54 x64 x53 x41 x1 x30 x8 x29 x34 x33 x31 x24 x49 x32 x53 x51 x33 x1 x52 x64 | {'task': 'reverse', 'seq': ['x64', 'x52', 'x1', 'x33', 'x51', 'x53', 'x32', 'x49', 'x24', 'x31', 'x33', 'x34', 'x29', 'x8', 'x30', 'x1', 'x41', 'x53', 'x64', 'x54', 'x64', 'x4', 'x8', 'x7', 'x39', 'x64', 'x4', 'x41', 'x4', 'x43', 'x51', 'x43'], 'k': 4, 'n': 32, '_time': 0.00027370452880859375, '_task': 'basic_procedura... | reverse | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x43 x57 x62 x7 x3 x14 x11 x54 x55 x58 x6 x43 x60 x2 x4 x61 x1 x35 x9 x30 x15 x19 x54 x28 x29 x52 x23 x23 x44 x37 x29 x26 | x43 x57 x62 x7 x3 x14 x11 x54 x55 x58 x6 x60 x2 x4 x61 x1 x35 x9 x30 x15 x19 x28 x29 x52 x23 x44 x37 x26 | {'task': 'set', 'seq': ['x43', 'x57', 'x62', 'x7', 'x3', 'x14', 'x11', 'x54', 'x55', 'x58', 'x6', 'x43', 'x60', 'x2', 'x4', 'x61', 'x1', 'x35', 'x9', 'x30', 'x15', 'x19', 'x54', 'x28', 'x29', 'x52', 'x23', 'x23', 'x44', 'x37', 'x29', 'x26'], 'k': 4, 'n': 32, '_time': 0.00028395652770996094, '_task': 'basic_procedural',... | set | instruct | 0 |
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens.
Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence. | o3 c3 o3 o2 c2 c3 o3 c3 o0 c0 o0 o3 c3 o1 o3 o1 o0 c0 o2 c2 c1 c3 c1 o3 c3 c0 o2 c2 o2 o0 c0 c2 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00038433074951171875, '_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 o3 o0 c0 o0 c0 o0 o1 c1 c0 o1 c1 o1 c1 c3 c1 o1 o0 o1 c1 c0 c1 o2 o1 o0 o1 c1 c0 o1 c1 c1 c2 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002560615539550781, '_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 o0 c0 c2 o2 c2 o2 c2 o3 o0 o3 c3 c0 c3 o3 c3 o0 o3 o0 o3 c3 o3 c3 c0 c3 o2 o2 o1 c1 c2 c2 c0 | {'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 |
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 o3 o0 o3 o2 o0 c0 o2 o3 c3 c2 c2 o0 c0 c3 c0 o0 o0 o2 c2 c0 c0 c3 c0 o3 o2 c2 c3 o2 o1 c1 c2 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00025653839111328125, '_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)
x10 x47 x6 x21 x42 x36 x25 x18 x21 x49 x10 x56 x43 x41 x10 x53 x12 x12 x63 x37 x58 x25 x30 x11 x55 x6 x13 x2 x12 x54 x54 x40 | x10 x47 x6 x21 x42 x36 x25 x18 x49 x56 x43 x41 x53 x12 x63 x37 x58 x30 x11 x55 x13 x2 x54 x40 | {'task': 'set', 'seq': ['x10', 'x47', 'x6', 'x21', 'x42', 'x36', 'x25', 'x18', 'x21', 'x49', 'x10', 'x56', 'x43', 'x41', 'x10', 'x53', 'x12', 'x12', 'x63', 'x37', 'x58', 'x25', 'x30', 'x11', 'x55', 'x6', 'x13', 'x2', 'x12', 'x54', 'x54', 'x40'], 'k': 4, 'n': 32, '_time': 0.0002586841583251953, '_task': 'basic_procedura... | set | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x10 x45 x39 x58 x23 x42 x40 x56 x35 x21 x5 x26 x20 x44 x16 x50 x29 x23 x11 x55 x42 x20 x22 x48 x5 x56 x28 x28 x40 x39 x60 x44
(TARGET)
x14 | x10 x45 x39 x58 x23 x42 x40 x56 x35 x21 x5 x26 x20 x44 x16 x50 x29 x23 x11 x55 x42 x20 x22 x48 x5 x56 x28 x28 x40 x39 x60 x44 | {'task': 'delete', 'seq': [['x10', 'x45', 'x39', 'x58', 'x23', 'x42', 'x40', 'x56', 'x35', 'x21', 'x5', 'x26', 'x20', 'x44', 'x16', 'x50', 'x29', 'x23', 'x11', 'x55', 'x42', 'x20', 'x22', 'x48', 'x5', 'x56', 'x28', 'x28', 'x40', 'x39', 'x60', 'x44'], 'x14'], 'k': 4, 'n': 32, '_time': 0.0003094673156738281, '_task': 'ba... | delete | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x47 x7 x33 x31 x14 x50 x18 x43 x55 x49 x55 x53 x63 x40 x41 x48 x59 x32 x45 x56 x42 x46 x16 x12 x49 x30 x1 x2 x24 x55 x2 x27 | x47 x7 x33 x31 x14 x50 x18 x43 x55 x49 x55 x53 x63 x40 x41 x48 x59 x32 x45 x56 x42 x46 x16 x12 x49 x30 x1 x2 x24 x55 x2 x27 | {'task': 'identity', 'seq': ['x47', 'x7', 'x33', 'x31', 'x14', 'x50', 'x18', 'x43', 'x55', 'x49', 'x55', 'x53', 'x63', 'x40', 'x41', 'x48', 'x59', 'x32', 'x45', 'x56', 'x42', 'x46', 'x16', 'x12', 'x49', 'x30', 'x1', 'x2', 'x24', 'x55', 'x2', 'x27'], 'k': 4, 'n': 32, '_time': 0.0002734661102294922, '_task': 'basic_proce... | 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 x37; POP; PUSH x6; POP; PUSH x43; PUSH x14; POP; POP; PUSH x22; POP; PUSH x12; PUSH x19; PUSH x17; PUSH x31; PUSH x56; PUSH x1; PUSH x46; PUSH x3; PUSH x2... | x1 x56 x31 x17 x19 x12 | {'task': 'stack', 'seq': ['PUSH x37', 'POP', 'PUSH x6', 'POP', 'PUSH x43', 'PUSH x14', 'POP', 'POP', 'PUSH x22', 'POP', 'PUSH x12', 'PUSH x19', 'PUSH x17', 'PUSH x31', 'PUSH x56', 'PUSH x1', 'PUSH x46', 'PUSH x3', 'PUSH x22', 'POP', 'PUSH x46', 'PUSH x48', 'POP', 'POP', 'PUSH x26', 'POP', 'POP', 'PUSH x52', 'POP', 'POP... | stack | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x47 x53 x35 x7 x50 x10 x38 x20 x9 x33 x55 x36 x21 x23 x19 x1 x51 x38 x24 x62 x47 x10 x38 x3 x58 x43 x48 x53 x25 x13 x48 x11
(TARGET)
x10 | x47 x53 x35 x7 x50 x38 x20 x9 x33 x55 x36 x21 x23 x19 x1 x51 x38 x24 x62 x47 x10 x38 x3 x58 x43 x48 x53 x25 x13 x48 x11 | {'task': 'delete', 'seq': [['x47', 'x53', 'x35', 'x7', 'x50', 'x10', 'x38', 'x20', 'x9', 'x33', 'x55', 'x36', 'x21', 'x23', 'x19', 'x1', 'x51', 'x38', 'x24', 'x62', 'x47', 'x10', 'x38', 'x3', 'x58', 'x43', 'x48', 'x53', 'x25', 'x13', 'x48', 'x11'], 'x10'], 'k': 4, 'n': 32, '_time': 0.0002887248992919922, '_task': 'basi... | delete | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x11 x16 x63 x38 x10 x27 x9 x3 x2 x24 x34 x33 x40 x33 x40 x29 x33 x37 x15 x1 x46 x9 x41 x7 x21 x26 x60 x51 x4 x41 x23 x59 | x11 x16 x63 x38 x10 x27 x9 x3 x2 x24 x34 x33 x40 x29 x37 x15 x1 x46 x41 x7 x21 x26 x60 x51 x4 x23 x59 | {'task': 'set', 'seq': ['x11', 'x16', 'x63', 'x38', 'x10', 'x27', 'x9', 'x3', 'x2', 'x24', 'x34', 'x33', 'x40', 'x33', 'x40', 'x29', 'x33', 'x37', 'x15', 'x1', 'x46', 'x9', 'x41', 'x7', 'x21', 'x26', 'x60', 'x51', 'x4', 'x41', 'x23', 'x59'], 'k': 4, 'n': 32, '_time': 0.00028133392333984375, '_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 x11; POP; PUSH x31; POP; PUSH x28; POP; PUSH x64; POP; PUSH x25; PUSH x59; PUSH x2; PUSH x14; PUSH x13; PUSH x42; PUSH x50; PUSH x49; PUSH x8; POP; PUSH x... | x20 x59 x49 x50 x42 x13 x14 x2 x59 x25 | {'task': 'stack', 'seq': ['PUSH x11', 'POP', 'PUSH x31', 'POP', 'PUSH x28', 'POP', 'PUSH x64', 'POP', 'PUSH x25', 'PUSH x59', 'PUSH x2', 'PUSH x14', 'PUSH x13', 'PUSH x42', 'PUSH x50', 'PUSH x49', 'PUSH x8', 'POP', 'PUSH x10', 'PUSH x23', 'PUSH x52', 'PUSH x19', 'POP', 'POP', 'POP', 'PUSH x46', 'POP', 'POP', 'PUSH x6',... | stack | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x49 x7 x5 x19 x53 x38 x39 x40 x59 x26 x55 x60 x45 x22 x11 x9 x46 x1 x45 x60 x53 x57 x25 x8 x54 x40 x7 x20 x3 x50 x40 x6 | x49 x7 x5 x19 x53 x38 x39 x40 x59 x26 x55 x60 x45 x22 x11 x9 x46 x1 x57 x25 x8 x54 x20 x3 x50 x6 | {'task': 'set', 'seq': ['x49', 'x7', 'x5', 'x19', 'x53', 'x38', 'x39', 'x40', 'x59', 'x26', 'x55', 'x60', 'x45', 'x22', 'x11', 'x9', 'x46', 'x1', 'x45', 'x60', 'x53', 'x57', 'x25', 'x8', 'x54', 'x40', 'x7', 'x20', 'x3', 'x50', 'x40', 'x6'], 'k': 4, 'n': 32, '_time': 0.0002808570861816406, '_task': 'basic_procedural', '... | set | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x26 x58 x58 x2 x29 x57 x36 x49 x62 x19 x30 x47 x20 x34 x10 x20 x22 x11 x56 x18 x44 x39 x57 x62 x19 x36 x17 x19 x14 x61 x6 x16 | x16 x6 x61 x14 x19 x17 x36 x19 x62 x57 x39 x44 x18 x56 x11 x22 x20 x10 x34 x20 x47 x30 x19 x62 x49 x36 x57 x29 x2 x58 x58 x26 | {'task': 'reverse', 'seq': ['x26', 'x58', 'x58', 'x2', 'x29', 'x57', 'x36', 'x49', 'x62', 'x19', 'x30', 'x47', 'x20', 'x34', 'x10', 'x20', 'x22', 'x11', 'x56', 'x18', 'x44', 'x39', 'x57', 'x62', 'x19', 'x36', 'x17', 'x19', 'x14', 'x61', 'x6', 'x16'], 'k': 4, 'n': 32, '_time': 0.0004107952117919922, '_task': 'basic_proc... | 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 x17; POP; PUSH x18; PUSH x20; PUSH x23; PUSH x17; PUSH x25; PUSH x6; PUSH x26; POP; PUSH x57; PUSH x9; PUSH x40; PUSH x22; PUSH x13; POP; POP; PUSH x40; P... | x6 x25 x17 x23 x20 x18 | {'task': 'stack', 'seq': ['PUSH x17', 'POP', 'PUSH x18', 'PUSH x20', 'PUSH x23', 'PUSH x17', 'PUSH x25', 'PUSH x6', 'PUSH x26', 'POP', 'PUSH x57', 'PUSH x9', 'PUSH x40', 'PUSH x22', 'PUSH x13', 'POP', 'POP', 'PUSH x40', 'PUSH x61', 'PUSH x10', 'PUSH x49', 'PUSH x57', 'POP', 'POP', 'POP', 'POP', 'PUSH x54', 'POP', 'POP'... | stack | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x43 x31 x39 x58 x31 x3 x15 x54 x34 x1 x19 x38 x14 x58 x64 x53 x7 x24 x20 x36 x54 x3 x24 x44 x30 x59 x40 x56 x34 x24 x24 x17 | x43 x31 x39 x58 x3 x15 x54 x34 x1 x19 x38 x14 x64 x53 x7 x24 x20 x36 x44 x30 x59 x40 x56 x17 | {'task': 'set', 'seq': ['x43', 'x31', 'x39', 'x58', 'x31', 'x3', 'x15', 'x54', 'x34', 'x1', 'x19', 'x38', 'x14', 'x58', 'x64', 'x53', 'x7', 'x24', 'x20', 'x36', 'x54', 'x3', 'x24', 'x44', 'x30', 'x59', 'x40', 'x56', 'x34', 'x24', 'x24', 'x17'], 'k': 4, 'n': 32, '_time': 0.00027942657470703125, '_task': 'basic_procedura... | set | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x27 x47 x30 x39 x36 x36 x17 x6 x7 x12 x28 x38 x33 x19 x46 x33 x31 x1 x36 x2 x48 x3 x47 x45 x38 x40 x61 x45 x57 x59 x27 x2
(TARGET)
x40 | x27 x47 x30 x39 x36 x36 x17 x6 x7 x12 x28 x38 x33 x19 x46 x33 x31 x1 x36 x2 x48 x3 x47 x45 x38 x61 x45 x57 x59 x27 x2 | {'task': 'delete', 'seq': [['x27', 'x47', 'x30', 'x39', 'x36', 'x36', 'x17', 'x6', 'x7', 'x12', 'x28', 'x38', 'x33', 'x19', 'x46', 'x33', 'x31', 'x1', 'x36', 'x2', 'x48', 'x3', 'x47', 'x45', 'x38', 'x40', 'x61', 'x45', 'x57', 'x59', 'x27', 'x2'], 'x40'], 'k': 4, 'n': 32, '_time': 0.00029587745666503906, '_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 o1 c1 c0 o1 o1 c1 o2 o0 o2 o2 o2 c2 o2 o0 o1 o1 o2 o0 c0 c2 o2 c2 c1 c1 c0 c2 c2 c2 c0 c2 c1 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002567768096923828, '_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 c1 o2 o3 c3 o1 o1 c1 c1 o3 c3 c2 o2 c2 o1 c1 o1 o0 c0 o1 o3 o2 c2 o1 o3 c3 o2 c2 c1 c3 c1 c1 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003917217254638672, '_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)
x18 x63 x46 x52 x48 x51 x45 x8 x23 x24 x60 x58 x39 x29 x52 x37
(B)
x28 x41 x57 x50 x23 x48 x39 x39 x48 x48 x59 x39 x64 x23 x27 x44 | x18 x63 x46 x52 x48 x51 x45 x8 x23 x24 x60 x58 x39 x29 x37 x28 x41 x57 x50 x59 x64 x27 x44 | {'task': 'union', 'seq': [['x18', 'x63', 'x46', 'x52', 'x48', 'x51', 'x45', 'x8', 'x23', 'x24', 'x60', 'x58', 'x39', 'x29', 'x52', 'x37'], ['x28', 'x41', 'x57', 'x50', 'x23', 'x48', 'x39', 'x39', 'x48', 'x48', 'x59', 'x39', 'x64', 'x23', 'x27', 'x44']], 'k': 4, 'n': 32, '_time': 0.0002963542938232422, '_task': 'basic_p... | union | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x25 x57 x20 x7 x37 x48 x42 x55 x41 x22 x3 x42 x11 x50 x19 x10 x33 x37 x5 x61 x30 x17 x50 x37 x57 x64 x34 x60 x38 x48 x54 x9 | x25 x57 x20 x7 x37 x48 x42 x55 x41 x22 x3 x11 x50 x19 x10 x33 x5 x61 x30 x17 x64 x34 x60 x38 x54 x9 | {'task': 'set', 'seq': ['x25', 'x57', 'x20', 'x7', 'x37', 'x48', 'x42', 'x55', 'x41', 'x22', 'x3', 'x42', 'x11', 'x50', 'x19', 'x10', 'x33', 'x37', 'x5', 'x61', 'x30', 'x17', 'x50', 'x37', 'x57', 'x64', 'x34', 'x60', 'x38', 'x48', 'x54', 'x9'], 'k': 4, 'n': 32, '_time': 0.0002803802490234375, '_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. | o3 c3 o2 c2 o2 o2 o1 o1 c1 o2 o2 c2 c2 c1 o2 o2 o2 o2 o1 o0 c0 o3 o0 c1 c0 c2 c3 c2 c2 c2 c2 c2 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0004475116729736328, '_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)
x35 x54 x46 x39 x22 x55 x42 x55 x46 x14 x37 x36 x26 x4 x4 x20 x13 x50 x28 x46 x3 x35 x18 x64 x48 x47 x58 x2 x64 x26 x10 x30
(TARGET)
x42 | x35 x54 x46 x39 x22 x55 x55 x46 x14 x37 x36 x26 x4 x4 x20 x13 x50 x28 x46 x3 x35 x18 x64 x48 x47 x58 x2 x64 x26 x10 x30 | {'task': 'delete', 'seq': [['x35', 'x54', 'x46', 'x39', 'x22', 'x55', 'x42', 'x55', 'x46', 'x14', 'x37', 'x36', 'x26', 'x4', 'x4', 'x20', 'x13', 'x50', 'x28', 'x46', 'x3', 'x35', 'x18', 'x64', 'x48', 'x47', 'x58', 'x2', 'x64', 'x26', 'x10', 'x30'], 'x42'], 'k': 4, 'n': 32, '_time': 0.00028967857360839844, '_task': 'bas... | delete | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x29 x60 x9 x55 x39 x44 x21 x41 x32 x44 x64 x4 x2 x45 x36 x45 x3 x15 x20 x7 x47 x16 x1 x1 x39 x30 x21 x36 x47 x15 x2 x63 | x29 x60 x9 x55 x39 x44 x21 x41 x32 x44 x64 x4 x2 x45 x36 x45 x3 x15 x20 x7 x47 x16 x1 x1 x39 x30 x21 x36 x47 x15 x2 x63 | {'task': 'identity', 'seq': ['x29', 'x60', 'x9', 'x55', 'x39', 'x44', 'x21', 'x41', 'x32', 'x44', 'x64', 'x4', 'x2', 'x45', 'x36', 'x45', 'x3', 'x15', 'x20', 'x7', 'x47', 'x16', 'x1', 'x1', 'x39', 'x30', 'x21', 'x36', 'x47', 'x15', 'x2', 'x63'], 'k': 4, 'n': 32, '_time': 0.0002734661102294922, '_task': 'basic_procedura... | 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 c3 o3 o1 c1 c3 o0 c0 o1 o3 o2 c2 c3 c1 o2 c2 o2 c2 o1 o3 o3 o0 o3 c3 c0 c3 o2 o2 c2 c2 c3 c1 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00025653839111328125, '_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)
x44 x37 x52 x34 x60 x7 x41 x38 x40 x53 x9 x40 x38 x53 x18 x38 x18 x24 x33 x54 x12 x59 x53 x8 x59 x51 x13 x4 x41 x64 x1 x26 | x44 x37 x52 x34 x60 x7 x41 x38 x40 x53 x9 x40 x38 x53 x18 x38 x18 x24 x33 x54 x12 x59 x53 x8 x59 x51 x13 x4 x41 x64 x1 x26 | {'task': 'identity', 'seq': ['x44', 'x37', 'x52', 'x34', 'x60', 'x7', 'x41', 'x38', 'x40', 'x53', 'x9', 'x40', 'x38', 'x53', 'x18', 'x38', 'x18', 'x24', 'x33', 'x54', 'x12', 'x59', 'x53', 'x8', 'x59', 'x51', 'x13', 'x4', 'x41', 'x64', 'x1', 'x26'], 'k': 4, 'n': 32, '_time': 0.0002732276916503906, '_task': 'basic_proced... | 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 x14; PUSH x5; PUSH x10; PUSH x35; PUSH x34; PUSH x45; PUSH x25; PUSH x9; PUSH x17; PUSH x26; POP; PUSH x52; PUSH x54; PUSH x39; PUSH x16; PUSH x6; POP; PU... | x47 x16 x39 x54 x52 x17 x9 x25 x45 x34 x35 x10 x5 x14 | {'task': 'stack', 'seq': ['PUSH x14', 'PUSH x5', 'PUSH x10', 'PUSH x35', 'PUSH x34', 'PUSH x45', 'PUSH x25', 'PUSH x9', 'PUSH x17', 'PUSH x26', 'POP', 'PUSH x52', 'PUSH x54', 'PUSH x39', 'PUSH x16', 'PUSH x6', 'POP', 'PUSH x54', 'PUSH x6', 'PUSH x29', 'PUSH x24', 'PUSH x6', 'POP', 'POP', 'POP', 'POP', 'POP', 'PUSH x47'... | 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)
x33 x46 x50 x30 x61 x46 x21 x61 x55 x57 x11 x33 x6 x49 x11 x59
(B)
x20 x53 x37 x36 x27 x23 x61 x4 x45 x20 x51 x51 x46 x43 x41 x26 | x33 x46 x50 x30 x61 x21 x55 x57 x11 x6 x49 x59 x20 x53 x37 x36 x27 x23 x4 x45 x51 x43 x41 x26 | {'task': 'union', 'seq': [['x33', 'x46', 'x50', 'x30', 'x61', 'x46', 'x21', 'x61', 'x55', 'x57', 'x11', 'x33', 'x6', 'x49', 'x11', 'x59'], ['x20', 'x53', 'x37', 'x36', 'x27', 'x23', 'x61', 'x4', 'x45', 'x20', 'x51', 'x51', 'x46', 'x43', 'x41', 'x26']], 'k': 4, 'n': 32, '_time': 0.0002980232238769531, '_task': 'basic_pr... | 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 x57; PUSH x3; PUSH x41; PUSH x61; PUSH x26; PUSH x12; PUSH x49; PUSH x57; PUSH x3; PUSH x48; PUSH x57; PUSH x52; PUSH x51; PUSH x12; PUSH x13; PUSH x43; P... | x52 x57 x48 x3 x57 x49 x12 x26 x61 x41 x3 x57 | {'task': 'stack', 'seq': ['PUSH x57', 'PUSH x3', 'PUSH x41', 'PUSH x61', 'PUSH x26', 'PUSH x12', 'PUSH x49', 'PUSH x57', 'PUSH x3', 'PUSH x48', 'PUSH x57', 'PUSH x52', 'PUSH x51', 'PUSH x12', 'PUSH x13', 'PUSH x43', 'PUSH x58', 'POP', 'PUSH x6', 'PUSH x8', 'PUSH x11', 'POP', 'POP', 'POP', 'PUSH x32', 'POP', 'POP', 'PUS... | 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)
x8 x2 x43 x17 x64 x30 x62 x13 x64 x16 x59 x60 x26 x11 x64 x50
(B)
x55 x27 x8 x36 x57 x5 x5 x1 x28 x44 x23 x39 x14 x50 x23 x26 | x8 x2 x43 x17 x64 x30 x62 x13 x16 x59 x60 x26 x11 x50 x55 x27 x36 x57 x5 x1 x28 x44 x23 x39 x14 | {'task': 'union', 'seq': [['x8', 'x2', 'x43', 'x17', 'x64', 'x30', 'x62', 'x13', 'x64', 'x16', 'x59', 'x60', 'x26', 'x11', 'x64', 'x50'], ['x55', 'x27', 'x8', 'x36', 'x57', 'x5', 'x5', 'x1', 'x28', 'x44', 'x23', 'x39', 'x14', 'x50', 'x23', 'x26']], 'k': 4, 'n': 32, '_time': 0.0002963542938232422, '_task': 'basic_proced... | union | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x33 x46 x26 x40 x18 x45 x19 x30 x51 x43 x16 x17 x23 x32 x47 x15 x47 x45 x26 x17 x54 x37 x8 x8 x57 x1 x31 x32 x5 x1 x12 x40
(TARGET)
x26 | x33 x46 x40 x18 x45 x19 x30 x51 x43 x16 x17 x23 x32 x47 x15 x47 x45 x26 x17 x54 x37 x8 x8 x57 x1 x31 x32 x5 x1 x12 x40 | {'task': 'delete', 'seq': [['x33', 'x46', 'x26', 'x40', 'x18', 'x45', 'x19', 'x30', 'x51', 'x43', 'x16', 'x17', 'x23', 'x32', 'x47', 'x15', 'x47', 'x45', 'x26', 'x17', 'x54', 'x37', 'x8', 'x8', 'x57', 'x1', 'x31', 'x32', 'x5', 'x1', 'x12', 'x40'], 'x26'], 'k': 4, 'n': 32, '_time': 0.00029015541076660156, '_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. | o2 c2 o3 c3 o0 c0 o2 c2 o3 c3 o2 o1 c1 o1 c2 c1 o2 c2 o2 o3 c2 c3 o2 c2 o1 o3 o0 o0 c3 c1 c0 c0 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002982616424560547, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens':... | dyck_shuffle | instruct | 0 |
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 x5; POP; PUSH x26; PUSH x7; POP; PUSH x9; PUSH x43; PUSH x33; PUSH x47; PUSH x39; PUSH x51; PUSH x21; PUSH x56; PUSH x24; PUSH x47; PUSH x62; PU... | x56 x21 x51 x39 x47 x33 x43 x9 x26 x22 | {'task': 'stack', 'seq': ['PUSH x22', 'PUSH x5', 'POP', 'PUSH x26', 'PUSH x7', 'POP', 'PUSH x9', 'PUSH x43', 'PUSH x33', 'PUSH x47', 'PUSH x39', 'PUSH x51', 'PUSH x21', 'PUSH x56', 'PUSH x24', 'PUSH x47', 'PUSH x62', 'PUSH x49', 'PUSH x59', 'PUSH x13', 'PUSH x15', 'PUSH x33', 'PUSH x33', 'POP', 'POP', 'POP', 'POP', 'PO... | stack | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x54 x52 x39 x37 x33 x4 x15 x8 x45 x45 x21 x13 x55 x43 x63 x44 x2 x24 x8 x54 x56 x7 x23 x47 x60 x45 x13 x60 x44 x56 x45 x59
(TARGET)
x13 | x54 x52 x39 x37 x33 x4 x15 x8 x45 x45 x21 x55 x43 x63 x44 x2 x24 x8 x54 x56 x7 x23 x47 x60 x45 x13 x60 x44 x56 x45 x59 | {'task': 'delete', 'seq': [['x54', 'x52', 'x39', 'x37', 'x33', 'x4', 'x15', 'x8', 'x45', 'x45', 'x21', 'x13', 'x55', 'x43', 'x63', 'x44', 'x2', 'x24', 'x8', 'x54', 'x56', 'x7', 'x23', 'x47', 'x60', 'x45', 'x13', 'x60', 'x44', 'x56', 'x45', 'x59'], 'x13'], 'k': 4, 'n': 32, '_time': 0.0002899169921875, '_task': 'basic_pr... | delete | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x23 x41 x6 x57 x40 x53 x54 x58 x49 x6 x45 x57 x25 x23 x9 x16 x59 x43 x15 x57 x19 x15 x43 x19 x46 x38 x41 x43 x51 x43 x18 x34
(TARGET)
x15 | x23 x41 x6 x57 x40 x53 x54 x58 x49 x6 x45 x57 x25 x23 x9 x16 x59 x43 x57 x19 x15 x43 x19 x46 x38 x41 x43 x51 x43 x18 x34 | {'task': 'delete', 'seq': [['x23', 'x41', 'x6', 'x57', 'x40', 'x53', 'x54', 'x58', 'x49', 'x6', 'x45', 'x57', 'x25', 'x23', 'x9', 'x16', 'x59', 'x43', 'x15', 'x57', 'x19', 'x15', 'x43', 'x19', 'x46', 'x38', 'x41', 'x43', 'x51', 'x43', 'x18', 'x34'], 'x15'], 'k': 4, 'n': 32, '_time': 0.00028967857360839844, '_task': 'ba... | delete | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x64 x33 x22 x56 x17 x35 x31 x50 x1 x15 x58 x43 x17 x39 x28 x46 x48 x22 x60 x30 x15 x36 x52 x2 x61 x22 x29 x7 x52 x38 x45 x41 | x41 x45 x38 x52 x7 x29 x22 x61 x2 x52 x36 x15 x30 x60 x22 x48 x46 x28 x39 x17 x43 x58 x15 x1 x50 x31 x35 x17 x56 x22 x33 x64 | {'task': 'reverse', 'seq': ['x64', 'x33', 'x22', 'x56', 'x17', 'x35', 'x31', 'x50', 'x1', 'x15', 'x58', 'x43', 'x17', 'x39', 'x28', 'x46', 'x48', 'x22', 'x60', 'x30', 'x15', 'x36', 'x52', 'x2', 'x61', 'x22', 'x29', 'x7', 'x52', 'x38', 'x45', 'x41'], 'k': 4, 'n': 32, '_time': 0.000385284423828125, '_task': 'basic_proced... | reverse | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x60 x33 x51 x31 x49 x22 x50 x20 x64 x64 x42 x51 x24 x4 x32 x25 x34 x12 x54 x42 x20 x31 x17 x49 x53 x48 x59 x25 x63 x59 x18 x20
(TARGET)
x17 | x60 x33 x51 x31 x49 x22 x50 x20 x64 x64 x42 x51 x24 x4 x32 x25 x34 x12 x54 x42 x20 x31 x49 x53 x48 x59 x25 x63 x59 x18 x20 | {'task': 'delete', 'seq': [['x60', 'x33', 'x51', 'x31', 'x49', 'x22', 'x50', 'x20', 'x64', 'x64', 'x42', 'x51', 'x24', 'x4', 'x32', 'x25', 'x34', 'x12', 'x54', 'x42', 'x20', 'x31', 'x17', 'x49', 'x53', 'x48', 'x59', 'x25', 'x63', 'x59', 'x18', 'x20'], 'x17'], 'k': 4, 'n': 32, '_time': 0.0002906322479248047, '_task': 'b... | 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 c3 o1 o0 o1 o1 o0 o3 o3 o3 c1 o0 c3 c0 c0 o1 c3 c0 c1 c1 o3 c1 c3 c3 o2 c2 o0 o0 c0 o3 c3 c0 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003447532653808594, '_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)
x35 x39 x7 x45 x42 x31 x14 x59 x40 x9 x32 x56 x19 x36 x47 x10
(B)
x16 x30 x13 x3 x14 x25 x36 x24 x34 x24 x38 x64 x36 x60 x46 x26 | x35 x39 x7 x45 x42 x31 x14 x59 x40 x9 x32 x56 x19 x36 x47 x10 x16 x30 x13 x3 x25 x24 x34 x38 x64 x60 x46 x26 | {'task': 'union', 'seq': [['x35', 'x39', 'x7', 'x45', 'x42', 'x31', 'x14', 'x59', 'x40', 'x9', 'x32', 'x56', 'x19', 'x36', 'x47', 'x10'], ['x16', 'x30', 'x13', 'x3', 'x14', 'x25', 'x36', 'x24', 'x34', 'x24', 'x38', 'x64', 'x36', 'x60', 'x46', 'x26']], 'k': 4, 'n': 32, '_time': 0.00045299530029296875, '_task': 'basic_pr... | union | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x9 x11 x6 x25 x36 x46 x38 x33 x52 x60 x29 x21 x30 x17 x53 x7 x57 x26 x40 x16 x29 x28 x33 x48 x21 x7 x27 x46 x7 x14 x22 x3 | x3 x6 x7 x7 x7 x9 x11 x14 x16 x17 x21 x21 x22 x25 x26 x27 x28 x29 x29 x30 x33 x33 x36 x38 x40 x46 x46 x48 x52 x53 x57 x60 | {'task': 'sort', 'seq': ['x9', 'x11', 'x6', 'x25', 'x36', 'x46', 'x38', 'x33', 'x52', 'x60', 'x29', 'x21', 'x30', 'x17', 'x53', 'x7', 'x57', 'x26', 'x40', 'x16', 'x29', 'x28', 'x33', 'x48', 'x21', 'x7', 'x27', 'x46', 'x7', 'x14', 'x22', 'x3'], 'k': 4, 'n': 32, '_time': 0.0002913475036621094, '_task': 'basic_procedural'... | sort | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x11 x33 x19 x51 x50 x50 x61 x18 x27 x57 x16 x44 x38 x12 x14 x5 x19 x5 x53 x36 x32 x39 x13 x11 x43 x2 x28 x1 x32 x16 x11 x3 | x11 x33 x19 x51 x50 x61 x18 x27 x57 x16 x44 x38 x12 x14 x5 x53 x36 x32 x39 x13 x43 x2 x28 x1 x3 | {'task': 'set', 'seq': ['x11', 'x33', 'x19', 'x51', 'x50', 'x50', 'x61', 'x18', 'x27', 'x57', 'x16', 'x44', 'x38', 'x12', 'x14', 'x5', 'x19', 'x5', 'x53', 'x36', 'x32', 'x39', 'x13', 'x11', 'x43', 'x2', 'x28', 'x1', 'x32', 'x16', 'x11', 'x3'], 'k': 4, 'n': 32, '_time': 0.000278472900390625, '_task': 'basic_procedural',... | set | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x6 x44 x51 x4 x19 x20 x10 x17 x54 x8 x62 x52 x53 x15 x55 x59 x5 x9 x15 x10 x34 x5 x45 x47 x31 x55 x60 x51 x40 x63 x7 x39
(TARGET)
x33 | x6 x44 x51 x4 x19 x20 x10 x17 x54 x8 x62 x52 x53 x15 x55 x59 x5 x9 x15 x10 x34 x5 x45 x47 x31 x55 x60 x51 x40 x63 x7 x39 | {'task': 'delete', 'seq': [['x6', 'x44', 'x51', 'x4', 'x19', 'x20', 'x10', 'x17', 'x54', 'x8', 'x62', 'x52', 'x53', 'x15', 'x55', 'x59', 'x5', 'x9', 'x15', 'x10', 'x34', 'x5', 'x45', 'x47', 'x31', 'x55', 'x60', 'x51', 'x40', 'x63', 'x7', 'x39'], 'x33'], 'k': 4, 'n': 32, '_time': 0.00042128562927246094, '_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 o0 o1 o2 o3 c3 o2 c2 c2 o3 c3 c1 c0 c3 o1 o3 o0 o0 c0 c0 o3 o1 c1 o0 c0 o2 o3 c3 c2 c3 c3 c1 | {'task': 'dyck', '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': 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)
x44 x19 x48 x8 x34 x36 x2 x2 x5 x1 x40 x7 x50 x13 x43 x11
(B)
x21 x38 x14 x26 x48 x3 x46 x10 x37 x27 x54 x32 x56 x5 x26 x22 | x44 x19 x48 x8 x34 x36 x2 x5 x1 x40 x7 x50 x13 x43 x11 x21 x38 x14 x26 x3 x46 x10 x37 x27 x54 x32 x56 x22 | {'task': 'union', 'seq': [['x44', 'x19', 'x48', 'x8', 'x34', 'x36', 'x2', 'x2', 'x5', 'x1', 'x40', 'x7', 'x50', 'x13', 'x43', 'x11'], ['x21', 'x38', 'x14', 'x26', 'x48', 'x3', 'x46', 'x10', 'x37', 'x27', 'x54', 'x32', 'x56', 'x5', 'x26', 'x22']], 'k': 4, 'n': 32, '_time': 0.00045371055603027344, '_task': 'basic_procedu... | union | instruct | 0 |
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence. | o3 c3 o1 o1 o3 c1 c3 o3 c1 c3 o3 o2 o2 c3 c2 c2 o2 o1 o3 c1 o1 c1 c2 o0 o2 c3 o2 c2 c0 c2 o3 c3 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00029921531677246094, '_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)
x13 x10 x63 x56 x11 x26 x39 x20 x54 x13 x7 x10 x23 x56 x63 x6 x53 x21 x41 x48 x64 x5 x31 x28 x47 x33 x55 x50 x35 x26 x54 x31 | x13 x10 x63 x56 x11 x26 x39 x20 x54 x7 x23 x6 x53 x21 x41 x48 x64 x5 x31 x28 x47 x33 x55 x50 x35 | {'task': 'set', 'seq': ['x13', 'x10', 'x63', 'x56', 'x11', 'x26', 'x39', 'x20', 'x54', 'x13', 'x7', 'x10', 'x23', 'x56', 'x63', 'x6', 'x53', 'x21', 'x41', 'x48', 'x64', 'x5', 'x31', 'x28', 'x47', 'x33', 'x55', 'x50', 'x35', 'x26', 'x54', 'x31'], 'k': 4, 'n': 32, '_time': 0.0002791881561279297, '_task': 'basic_procedura... | 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 o2 c2 c3 o2 o1 c1 o2 c2 o3 o0 c0 c3 c2 o3 o2 c2 c3 o1 o0 o2 c2 c0 o1 o0 c0 c1 c1 o0 o1 c1 c0 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002968311309814453, '_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)
x58 x12 x19 x14 x36 x52 x39 x31 x7 x3 x17 x51 x24 x34 x46 x56 x11 x20 x32 x4 x5 x35 x60 x53 x44 x56 x42 x62 x29 x25 x41 x11 | x58 x12 x19 x14 x36 x52 x39 x31 x7 x3 x17 x51 x24 x34 x46 x56 x11 x20 x32 x4 x5 x35 x60 x53 x44 x42 x62 x29 x25 x41 | {'task': 'set', 'seq': ['x58', 'x12', 'x19', 'x14', 'x36', 'x52', 'x39', 'x31', 'x7', 'x3', 'x17', 'x51', 'x24', 'x34', 'x46', 'x56', 'x11', 'x20', 'x32', 'x4', 'x5', 'x35', 'x60', 'x53', 'x44', 'x56', 'x42', 'x62', 'x29', 'x25', 'x41', 'x11'], 'k': 4, 'n': 32, '_time': 0.00039458274841308594, '_task': 'basic_procedura... | set | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x6 x2 x9 x19 x1 x63 x12 x6 x5 x24 x47 x16 x10 x9 x44 x6 x14 x40 x15 x53 x8 x5 x27 x22 x62 x41 x52 x38 x44 x27 x49 x35
(TARGET)
x63 | x6 x2 x9 x19 x1 x12 x6 x5 x24 x47 x16 x10 x9 x44 x6 x14 x40 x15 x53 x8 x5 x27 x22 x62 x41 x52 x38 x44 x27 x49 x35 | {'task': 'delete', 'seq': [['x6', 'x2', 'x9', 'x19', 'x1', 'x63', 'x12', 'x6', 'x5', 'x24', 'x47', 'x16', 'x10', 'x9', 'x44', 'x6', 'x14', 'x40', 'x15', 'x53', 'x8', 'x5', 'x27', 'x22', 'x62', 'x41', 'x52', 'x38', 'x44', 'x27', 'x49', 'x35'], 'x63'], 'k': 4, 'n': 32, '_time': 0.0002911090850830078, '_task': 'basic_proc... | 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. | o1 c1 o3 o0 o0 c0 c0 c3 o1 c1 o2 c2 o0 c0 o1 o2 c2 o1 o2 c2 c1 c1 o3 o0 o0 o0 c0 c0 o3 c3 c0 c3 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.00034499168395996094, '_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)
x54 x37 x27 x31 x64 x9 x7 x9 x10 x41 x22 x63 x14 x5 x35 x42 x56 x34 x31 x6 x50 x19 x23 x6 x48 x57 x37 x60 x26 x33 x56 x6 | x54 x37 x27 x31 x64 x9 x7 x9 x10 x41 x22 x63 x14 x5 x35 x42 x56 x34 x31 x6 x50 x19 x23 x6 x48 x57 x37 x60 x26 x33 x56 x6 | {'task': 'identity', 'seq': ['x54', 'x37', 'x27', 'x31', 'x64', 'x9', 'x7', 'x9', 'x10', 'x41', 'x22', 'x63', 'x14', 'x5', 'x35', 'x42', 'x56', 'x34', 'x31', 'x6', 'x50', 'x19', 'x23', 'x6', 'x48', 'x57', 'x37', 'x60', 'x26', 'x33', 'x56', 'x6'], 'k': 4, 'n': 32, '_time': 0.0003173351287841797, '_task': 'basic_procedur... | identity | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x24 x60 x20 x26 x15 x38 x56 x58 x62 x57 x6 x29 x49 x28 x27 x15 x23 x11 x51 x52 x13 x45 x26 x57 x15 x14 x22 x3 x13 x47 x51 x22
(TARGET)
x29 | x24 x60 x20 x26 x15 x38 x56 x58 x62 x57 x6 x49 x28 x27 x15 x23 x11 x51 x52 x13 x45 x26 x57 x15 x14 x22 x3 x13 x47 x51 x22 | {'task': 'delete', 'seq': [['x24', 'x60', 'x20', 'x26', 'x15', 'x38', 'x56', 'x58', 'x62', 'x57', 'x6', 'x29', 'x49', 'x28', 'x27', 'x15', 'x23', 'x11', 'x51', 'x52', 'x13', 'x45', 'x26', 'x57', 'x15', 'x14', 'x22', 'x3', 'x13', 'x47', 'x51', 'x22'], 'x29'], 'k': 4, 'n': 32, '_time': 0.00031495094299316406, '_task': 'b... | 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. | o1 o1 o0 c0 o0 o1 c1 c0 c1 o1 o2 o3 c3 o0 c0 c2 o0 o1 o2 o0 o1 c1 c0 c2 o1 c1 o3 c3 c1 c0 c1 c1 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003833770751953125, '_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)
x9 x24 x43 x35 x34 x17 x20 x12 x12 x51 x20 x55 x44 x29 x51 x23 x38 x44 x43 x58 x49 x13 x64 x2 x6 x40 x38 x56 x45 x21 x15 x16 | x16 x15 x21 x45 x56 x38 x40 x6 x2 x64 x13 x49 x58 x43 x44 x38 x23 x51 x29 x44 x55 x20 x51 x12 x12 x20 x17 x34 x35 x43 x24 x9 | {'task': 'reverse', 'seq': ['x9', 'x24', 'x43', 'x35', 'x34', 'x17', 'x20', 'x12', 'x12', 'x51', 'x20', 'x55', 'x44', 'x29', 'x51', 'x23', 'x38', 'x44', 'x43', 'x58', 'x49', 'x13', 'x64', 'x2', 'x6', 'x40', 'x38', 'x56', 'x45', 'x21', 'x15', 'x16'], 'k': 4, 'n': 32, '_time': 0.0002741813659667969, '_task': 'basic_proce... | reverse | instruct | 0 |
Sort the sequence in ascending numeric order, where x2 < x10.
(SEQUENCE)
x25 x59 x20 x25 x55 x8 x20 x4 x15 x19 x24 x39 x60 x53 x51 x41 x3 x51 x27 x53 x3 x2 x31 x46 x35 x59 x46 x12 x8 x57 x19 x19 | x2 x3 x3 x4 x8 x8 x12 x15 x19 x19 x19 x20 x20 x24 x25 x25 x27 x31 x35 x39 x41 x46 x46 x51 x51 x53 x53 x55 x57 x59 x59 x60 | {'task': 'sort', 'seq': ['x25', 'x59', 'x20', 'x25', 'x55', 'x8', 'x20', 'x4', 'x15', 'x19', 'x24', 'x39', 'x60', 'x53', 'x51', 'x41', 'x3', 'x51', 'x27', 'x53', 'x3', 'x2', 'x31', 'x46', 'x35', 'x59', 'x46', 'x12', 'x8', 'x57', 'x19', 'x19'], 'k': 4, 'n': 32, '_time': 0.00029087066650390625, '_task': 'basic_procedural... | sort | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x45 x29 x53 x60 x41 x29 x11 x17 x63 x14 x62 x53 x3 x47 x35 x38 x28 x27 x22 x55 x8 x47 x58 x45 x16 x63 x57 x33 x28 x22 x52 x38 | x45 x29 x53 x60 x41 x11 x17 x63 x14 x62 x3 x47 x35 x38 x28 x27 x22 x55 x8 x58 x16 x57 x33 x52 | {'task': 'set', 'seq': ['x45', 'x29', 'x53', 'x60', 'x41', 'x29', 'x11', 'x17', 'x63', 'x14', 'x62', 'x53', 'x3', 'x47', 'x35', 'x38', 'x28', 'x27', 'x22', 'x55', 'x8', 'x47', 'x58', 'x45', 'x16', 'x63', 'x57', 'x33', 'x28', 'x22', 'x52', 'x38'], 'k': 4, 'n': 32, '_time': 0.0003209114074707031, '_task': 'basic_procedur... | set | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x20 x21 x38 x18 x59 x30 x63 x31 x39 x28 x9 x60 x48 x51 x17 x24 x62 x27 x27 x32 x32 x56 x16 x31 x20 x2 x8 x41 x17 x3 x27 x10 | x10 x27 x3 x17 x41 x8 x2 x20 x31 x16 x56 x32 x32 x27 x27 x62 x24 x17 x51 x48 x60 x9 x28 x39 x31 x63 x30 x59 x18 x38 x21 x20 | {'task': 'reverse', 'seq': ['x20', 'x21', 'x38', 'x18', 'x59', 'x30', 'x63', 'x31', 'x39', 'x28', 'x9', 'x60', 'x48', 'x51', 'x17', 'x24', 'x62', 'x27', 'x27', 'x32', 'x32', 'x56', 'x16', 'x31', 'x20', 'x2', 'x8', 'x41', 'x17', 'x3', 'x27', 'x10'], 'k': 4, 'n': 32, '_time': 0.0002753734588623047, '_task': 'basic_proced... | reverse | instruct | 0 |
Return the unique elements of the sequence in order of first appearance.
(SEQUENCE)
x58 x47 x5 x30 x3 x54 x43 x22 x25 x36 x41 x27 x47 x14 x55 x18 x63 x12 x44 x63 x17 x43 x14 x7 x44 x48 x14 x56 x47 x63 x52 x29 | x58 x47 x5 x30 x3 x54 x43 x22 x25 x36 x41 x27 x14 x55 x18 x63 x12 x44 x17 x7 x48 x56 x52 x29 | {'task': 'set', 'seq': ['x58', 'x47', 'x5', 'x30', 'x3', 'x54', 'x43', 'x22', 'x25', 'x36', 'x41', 'x27', 'x47', 'x14', 'x55', 'x18', 'x63', 'x12', 'x44', 'x63', 'x17', 'x43', 'x14', 'x7', 'x44', 'x48', 'x14', 'x56', 'x47', 'x63', 'x52', 'x29'], 'k': 4, 'n': 32, '_time': 0.00025010108947753906, '_task': 'basic_procedur... | 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)
x58 x54 x43 x17 x56 x36 x27 x25 x31 x5 x12 x51 x52 x52 x3 x14
(B)
x37 x10 x41 x40 x24 x50 x61 x35 x58 x13 x7 x33 x25 x58 x19 x14 | x58 x54 x43 x17 x56 x36 x27 x25 x31 x5 x12 x51 x52 x3 x14 x37 x10 x41 x40 x24 x50 x61 x35 x13 x7 x33 x19 | {'task': 'union', 'seq': [['x58', 'x54', 'x43', 'x17', 'x56', 'x36', 'x27', 'x25', 'x31', 'x5', 'x12', 'x51', 'x52', 'x52', 'x3', 'x14'], ['x37', 'x10', 'x41', 'x40', 'x24', 'x50', 'x61', 'x35', 'x58', 'x13', 'x7', 'x33', 'x25', 'x58', 'x19', 'x14']], 'k': 4, 'n': 32, '_time': 0.00045752525329589844, '_task': 'basic_pr... | union | instruct | 0 |
Generate one valid Dyck-4 balanced-bracket sequence of exactly 32 tokens.
Use tokens o0..ok for opens and c0..ck for matching closes. Return only the sequence. | o1 o1 c1 o0 c0 o2 c2 c1 o0 o1 o2 c2 c1 c0 o2 c2 o0 c0 o1 c1 o0 o1 c1 o0 c0 c0 o3 c3 o3 c3 o0 c0 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002956390380859375, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 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 o1 o3 c1 c0 c3 o1 c1 o1 o3 c1 o3 o0 c3 o1 c1 c3 o2 o1 o1 c2 o2 o3 o0 c3 c1 o3 c1 c0 c2 c0 c3 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002987384796142578, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 46, '_answer_tokens':... | dyck_shuffle | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x25 x25 x54 x21 x8 x62 x9 x23 x13 x19 x55 x45 x25 x35 x7 x30 x36 x12 x26 x28 x21 x9 x53 x54 x16 x4 x10 x40 x8 x52 x61 x39 | x25 x25 x54 x21 x8 x62 x9 x23 x13 x19 x55 x45 x25 x35 x7 x30 x36 x12 x26 x28 x21 x9 x53 x54 x16 x4 x10 x40 x8 x52 x61 x39 | {'task': 'identity', 'seq': ['x25', 'x25', 'x54', 'x21', 'x8', 'x62', 'x9', 'x23', 'x13', 'x19', 'x55', 'x45', 'x25', 'x35', 'x7', 'x30', 'x36', 'x12', 'x26', 'x28', 'x21', 'x9', 'x53', 'x54', 'x16', 'x4', 'x10', 'x40', 'x8', 'x52', 'x61', 'x39'], 'k': 4, 'n': 32, '_time': 0.00027370452880859375, '_task': 'basic_proced... | identity | instruct | 0 |
Generate one valid shuffle-Dyck-4 sequence of exactly 32 tokens. Each close ci must match a previously opened oi of the same type, but closing order may be interleaved across types. Return only the sequence. | o1 o1 c1 o3 c1 c3 o2 o2 c2 o0 o2 c2 o1 o2 c0 c2 c2 o3 o2 o2 c2 o2 o3 c1 o3 c2 c2 c3 o1 c3 c1 c3 | {'task': 'dyck_shuffle', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002646446228027344, '_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 x43; PUSH x24; POP; POP; PUSH x10; POP; PUSH x27; POP; PUSH x11; PUSH x18; PUSH x14; PUSH x50; POP; PUSH x49; PUSH x25; PUSH x20; PUSH x61; POP; PUSH x34;... | x49 x14 x18 x11 | {'task': 'stack', 'seq': ['PUSH x43', 'PUSH x24', 'POP', 'POP', 'PUSH x10', 'POP', 'PUSH x27', 'POP', 'PUSH x11', 'PUSH x18', 'PUSH x14', 'PUSH x50', 'POP', 'PUSH x49', 'PUSH x25', 'PUSH x20', 'PUSH x61', 'POP', 'PUSH x34', 'PUSH x9', 'PUSH x56', 'PUSH x24', 'POP', 'POP', 'POP', 'PUSH x5', 'PUSH x59', 'POP', 'POP', 'PO... | stack | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x5 x62 x32 x9 x2 x4 x57 x60 x55 x58 x51 x20 x31 x50 x42 x46 x11 x49 x60 x32 x15 x58 x32 x17 x43 x8 x36 x14 x34 x62 x16 x16 | x16 x16 x62 x34 x14 x36 x8 x43 x17 x32 x58 x15 x32 x60 x49 x11 x46 x42 x50 x31 x20 x51 x58 x55 x60 x57 x4 x2 x9 x32 x62 x5 | {'task': 'reverse', 'seq': ['x5', 'x62', 'x32', 'x9', 'x2', 'x4', 'x57', 'x60', 'x55', 'x58', 'x51', 'x20', 'x31', 'x50', 'x42', 'x46', 'x11', 'x49', 'x60', 'x32', 'x15', 'x58', 'x32', 'x17', 'x43', 'x8', 'x36', 'x14', 'x34', 'x62', 'x16', 'x16'], 'k': 4, 'n': 32, '_time': 0.0003190040588378906, '_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)
x36 x60 x18 x27 x48 x34 x52 x46 x18 x47 x50 x37 x44 x27 x8 x43
(B)
x55 x26 x19 x47 x14 x7 x20 x42 x34 x7 x36 x19 x6 x48 x48 x61 | x36 x60 x18 x27 x48 x34 x52 x46 x47 x50 x37 x44 x8 x43 x55 x26 x19 x14 x7 x20 x42 x6 x61 | {'task': 'union', 'seq': [['x36', 'x60', 'x18', 'x27', 'x48', 'x34', 'x52', 'x46', 'x18', 'x47', 'x50', 'x37', 'x44', 'x27', 'x8', 'x43'], ['x55', 'x26', 'x19', 'x47', 'x14', 'x7', 'x20', 'x42', 'x34', 'x7', 'x36', 'x19', 'x6', 'x48', 'x48', 'x61']], 'k': 4, 'n': 32, '_time': 0.00029587745666503906, '_task': 'basic_pro... | union | instruct | 0 |
Copy the sequence exactly.
(SEQUENCE)
x61 x38 x37 x47 x39 x41 x47 x13 x14 x17 x29 x47 x26 x34 x8 x39 x59 x1 x31 x6 x55 x33 x60 x50 x22 x21 x15 x32 x32 x46 x18 x14 | x61 x38 x37 x47 x39 x41 x47 x13 x14 x17 x29 x47 x26 x34 x8 x39 x59 x1 x31 x6 x55 x33 x60 x50 x22 x21 x15 x32 x32 x46 x18 x14 | {'task': 'identity', 'seq': ['x61', 'x38', 'x37', 'x47', 'x39', 'x41', 'x47', 'x13', 'x14', 'x17', 'x29', 'x47', 'x26', 'x34', 'x8', 'x39', 'x59', 'x1', 'x31', 'x6', 'x55', 'x33', 'x60', 'x50', 'x22', 'x21', 'x15', 'x32', 'x32', 'x46', 'x18', 'x14'], 'k': 4, 'n': 32, '_time': 0.0002868175506591797, '_task': 'basic_proc... | 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 o3 o3 o2 o1 c1 o0 c0 o3 c3 o0 o0 o1 o1 c1 o3 c3 c1 c0 o1 o0 c0 o1 c1 c1 c0 c2 c3 c3 c2 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0002560615539550781, '_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. | o0 c0 o0 c0 o1 c1 o1 o0 c0 o1 c1 c1 o0 o0 c0 o3 c3 o0 c0 o2 c2 o3 c3 c0 o0 c0 o3 c3 o1 o1 c1 c1 | {'task': 'dyck', 'seq': [], 'k': 4, 'n': 32, '_time': 0.0003840923309326172, '_task': 'basic_procedural', '_level': 0, '_config': {'c': 1.0, 'level': 0, 'seed': None, 'size': None, 'task': 'mixed', 'seq_len': 32, 'vocab_size': 64, 'k': 4, 'p_open': 0.49, 'max_depth': 16}, '_prompt_tokens': 39, '_answer_tokens': 64} | dyck | instruct | 0 |
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B.
(A)
x30 x32 x59 x41 x32 x12 x56 x51 x16 x58 x40 x50 x61 x41 x37 x1
(B)
x51 x60 x35 x30 x12 x26 x6 x33 x22 x61 x2 x22 x34 x46 x20 x19 | x30 x32 x59 x41 x12 x56 x51 x16 x58 x40 x50 x61 x37 x1 x60 x35 x26 x6 x33 x22 x2 x34 x46 x20 x19 | {'task': 'union', 'seq': [['x30', 'x32', 'x59', 'x41', 'x32', 'x12', 'x56', 'x51', 'x16', 'x58', 'x40', 'x50', 'x61', 'x41', 'x37', 'x1'], ['x51', 'x60', 'x35', 'x30', 'x12', 'x26', 'x6', 'x33', 'x22', 'x61', 'x2', 'x22', 'x34', 'x46', 'x20', 'x19']], 'k': 4, 'n': 32, '_time': 0.0002732276916503906, '_task': 'basic_pro... | union | instruct | 0 |
Reverse the sequence.
(SEQUENCE)
x38 x40 x18 x28 x45 x16 x23 x16 x5 x3 x44 x5 x10 x50 x40 x14 x15 x22 x28 x32 x57 x7 x30 x54 x57 x13 x55 x13 x36 x9 x10 x63 | x63 x10 x9 x36 x13 x55 x13 x57 x54 x30 x7 x57 x32 x28 x22 x15 x14 x40 x50 x10 x5 x44 x3 x5 x16 x23 x16 x45 x28 x18 x40 x38 | {'task': 'reverse', 'seq': ['x38', 'x40', 'x18', 'x28', 'x45', 'x16', 'x23', 'x16', 'x5', 'x3', 'x44', 'x5', 'x10', 'x50', 'x40', 'x14', 'x15', 'x22', 'x28', 'x32', 'x57', 'x7', 'x30', 'x54', 'x57', 'x13', 'x55', 'x13', 'x36', 'x9', 'x10', 'x63'], 'k': 4, 'n': 32, '_time': 0.000274658203125, '_task': 'basic_procedural'... | 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)
x58 x52 x18 x32 x35 x13 x53 x21 x38 x41 x28 x20 x32 x62 x29 x7
(B)
x43 x39 x30 x40 x63 x8 x35 x39 x10 x21 x29 x57 x61 x42 x9 x60 | x58 x52 x18 x32 x35 x13 x53 x21 x38 x41 x28 x20 x62 x29 x7 x43 x39 x30 x40 x63 x8 x10 x57 x61 x42 x9 x60 | {'task': 'union', 'seq': [['x58', 'x52', 'x18', 'x32', 'x35', 'x13', 'x53', 'x21', 'x38', 'x41', 'x28', 'x20', 'x32', 'x62', 'x29', 'x7'], ['x43', 'x39', 'x30', 'x40', 'x63', 'x8', 'x35', 'x39', 'x10', 'x21', 'x29', 'x57', 'x61', 'x42', 'x9', 'x60']], 'k': 4, 'n': 32, '_time': 0.0004284381866455078, '_task': 'basic_pro... | union | instruct | 0 |
Execute the stack operations. PUSH x pushes x. POP removes the top item. Return the final stack from top to bottom, or EMPTY if the stack is empty.
(OPERATIONS)
PUSH x61; POP; PUSH x49; PUSH x60; PUSH x42; PUSH x22; PUSH x63; PUSH x4; PUSH x13; POP; POP; PUSH x55; PUSH x56; PUSH x48; PUSH x11; POP; PUSH x46; PUSH x49; ... | x48 x56 x55 x63 x22 x42 x60 x49 | {'task': 'stack', 'seq': ['PUSH x61', 'POP', 'PUSH x49', 'PUSH x60', 'PUSH x42', 'PUSH x22', 'PUSH x63', 'PUSH x4', 'PUSH x13', 'POP', 'POP', 'PUSH x55', 'PUSH x56', 'PUSH x48', 'PUSH x11', 'POP', 'PUSH x46', 'PUSH x49', 'PUSH x47', 'PUSH x62', 'POP', 'PUSH x44', 'PUSH x22', 'POP', 'POP', 'POP', 'POP', 'PUSH x29', 'POP... | stack | instruct | 0 |
Delete the first occurrence of TARGET from SEQUENCE. If TARGET is absent, return SEQUENCE unchanged.
(SEQUENCE)
x29 x7 x18 x18 x16 x61 x42 x13 x5 x35 x21 x62 x26 x21 x36 x38 x10 x46 x47 x25 x34 x63 x23 x13 x45 x11 x8 x18 x33 x44 x24 x8
(TARGET)
x30 | x29 x7 x18 x18 x16 x61 x42 x13 x5 x35 x21 x62 x26 x21 x36 x38 x10 x46 x47 x25 x34 x63 x23 x13 x45 x11 x8 x18 x33 x44 x24 x8 | {'task': 'delete', 'seq': [['x29', 'x7', 'x18', 'x18', 'x16', 'x61', 'x42', 'x13', 'x5', 'x35', 'x21', 'x62', 'x26', 'x21', 'x36', 'x38', 'x10', 'x46', 'x47', 'x25', 'x34', 'x63', 'x23', 'x13', 'x45', 'x11', 'x8', 'x18', 'x33', 'x44', 'x24', 'x8'], 'x30'], 'k': 4, 'n': 32, '_time': 0.0004143714904785156, '_task': 'basi... | delete | instruct | 0 |
Return the ordered union of the two sequences: keep each token the first time it appears while scanning A then B.
(A)
x45 x6 x6 x41 x19 x62 x7 x22 x9 x43 x16 x63 x50 x27 x19 x9
(B)
x61 x63 x54 x29 x54 x8 x3 x36 x15 x29 x1 x18 x28 x24 x64 x47 | x45 x6 x41 x19 x62 x7 x22 x9 x43 x16 x63 x50 x27 x61 x54 x29 x8 x3 x36 x15 x1 x18 x28 x24 x64 x47 | {'task': 'union', 'seq': [['x45', 'x6', 'x6', 'x41', 'x19', 'x62', 'x7', 'x22', 'x9', 'x43', 'x16', 'x63', 'x50', 'x27', 'x19', 'x9'], ['x61', 'x63', 'x54', 'x29', 'x54', 'x8', 'x3', 'x36', 'x15', 'x29', 'x1', 'x18', 'x28', 'x24', 'x64', 'x47']], 'k': 4, 'n': 32, '_time': 0.0003018379211425781, '_task': 'basic_procedur... | union | instruct | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.