Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,23 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
+
|
5 |
+
[Paper](https://arxiv.org/abs/2505.15809) | [Code](https://github.com/Gen-Verse/CURE)
|
6 |
+
|
7 |
+
|
8 |
+
We use Stdio input/output format here. For example, for the task to calculate the sum of a list, the input and output are in the following format:
|
9 |
+
```python
|
10 |
+
input = "5\n1 2 3 4 5\n"
|
11 |
+
output = "15"
|
12 |
+
```
|
13 |
+
CodeContests and CodeForces are using this format, however, MBPP and part of LiveCodeBench are using functional input/output format, such like
|
14 |
+
```python
|
15 |
+
assert sum_function([1, 2, 3, 4, 5]) == 15
|
16 |
+
```
|
17 |
+
In this project, we have converted the the functional format to the Stdio format to achieve consistency.
|
18 |
+
|
19 |
+
|
20 |
+
# Citation
|
21 |
+
|
22 |
+
```
|
23 |
+
```
|