epochs-demos commited on
Commit
89b9421
·
verified ·
1 Parent(s): a4079b0

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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('''assd''')
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 that adds two values.''')
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)]])