Datasets:
Tasks:
Text Generation
Sub-tasks:
language-modeling
Languages:
code
Size:
10K<n<100K
ArXiv:
Tags:
code
License:
Update README.md
Browse files
README.md
CHANGED
@@ -122,7 +122,8 @@ You can also filter the dataset for the difficulty level: EASY, MEDIUM, MEDIUM_H
|
|
122 |
```python
|
123 |
ds = load_dataset("BAAI/TACO", split="train", difficulties=["VERY_HARD"])
|
124 |
print(next(iter(ds))["question"])
|
125 |
-
|
|
|
126 |
#OUTPUT:
|
127 |
"""Let S(n) denote the number that represents the digits of n in sorted order. For example, S(1) = 1, S(5) = 5, S(50394) = 3459, S(353535) = 333555.
|
128 |
Given a number X, compute <image> modulo 109 + 7.
|
@@ -152,6 +153,7 @@ Note
|
|
152 |
The first few values of S are 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 12. The sum of these values is 195.
|
153 |
```
|
154 |
Or if you want the problems invovled with Range queries and Sorting, you need to select the skills Range queries and Sorting:
|
|
|
155 |
```python
|
156 |
ds = load_dataset("BAAI/TACO", split="train", skills=["Range queries", "Sorting"])
|
157 |
```
|
|
|
122 |
```python
|
123 |
ds = load_dataset("BAAI/TACO", split="train", difficulties=["VERY_HARD"])
|
124 |
print(next(iter(ds))["question"])
|
125 |
+
```
|
126 |
+
```
|
127 |
#OUTPUT:
|
128 |
"""Let S(n) denote the number that represents the digits of n in sorted order. For example, S(1) = 1, S(5) = 5, S(50394) = 3459, S(353535) = 333555.
|
129 |
Given a number X, compute <image> modulo 109 + 7.
|
|
|
153 |
The first few values of S are 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 12. The sum of these values is 195.
|
154 |
```
|
155 |
Or if you want the problems invovled with Range queries and Sorting, you need to select the skills Range queries and Sorting:
|
156 |
+
|
157 |
```python
|
158 |
ds = load_dataset("BAAI/TACO", split="train", skills=["Range queries", "Sorting"])
|
159 |
```
|