Spaces:
Sleeping
Sleeping
Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
|
@@ -62,7 +62,7 @@ def main():
|
|
| 62 |
|
| 63 |
# Description of the challenge
|
| 64 |
st.write("Create a function sum that meets the following criteria:")
|
| 65 |
-
st.write('''Create function
|
| 66 |
|
| 67 |
# Display sample example for all test cases
|
| 68 |
sample_examples = "\n".join([f"sum({params}) -> {expected_output}" for params, expected_output in [((1, 2), 3)]])
|
|
|
|
| 62 |
|
| 63 |
# Description of the challenge
|
| 64 |
st.write("Create a function sum that meets the following criteria:")
|
| 65 |
+
st.write('''Create function to get the sum of two integers.''')
|
| 66 |
|
| 67 |
# Display sample example for all test cases
|
| 68 |
sample_examples = "\n".join([f"sum({params}) -> {expected_output}" for params, expected_output in [((1, 2), 3)]])
|