Update
Browse files
app.py
CHANGED
@@ -21,8 +21,10 @@ with st.spinner("Loading data...", show_time=True):
|
|
21 |
|
22 |
if "problem" in st.query_params:
|
23 |
problem_id = int(st.query_params["problem"])
|
24 |
-
st.write(f"Problem [{problem_id}]")
|
25 |
problem_instance = problem_dict[problem_id]
|
|
|
|
|
|
|
26 |
|
27 |
with st.expander("Problem Description"):
|
28 |
st.markdown(problem_instance["question_content"])
|
|
|
21 |
|
22 |
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"):
|
30 |
st.markdown(problem_instance["question_content"])
|