Update
Browse files
app.py
CHANGED
|
@@ -23,7 +23,7 @@ if "problem" in st.query_params:
|
|
| 23 |
problem_id = int(st.query_params["problem"])
|
| 24 |
problem_instance = problem_dict[problem_id]
|
| 25 |
|
| 26 |
-
with st.container():
|
| 27 |
st.write(f"Problem [{problem_id}]")
|
| 28 |
|
| 29 |
with st.expander("Problem Description"):
|
|
|
|
| 23 |
problem_id = int(st.query_params["problem"])
|
| 24 |
problem_instance = problem_dict[problem_id]
|
| 25 |
|
| 26 |
+
with st.container(border=True):
|
| 27 |
st.write(f"Problem [{problem_id}]")
|
| 28 |
|
| 29 |
with st.expander("Problem Description"):
|