Update
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ with st.spinner("Loading data...", show_time=True):
|
|
14 |
|
15 |
|
16 |
if "problem" in st.query_params:
|
17 |
-
problem_id = st.query_params["problem"]
|
18 |
st.write(f"Problem Description - [{problem_id}]")
|
19 |
st.write(problem_dict[problem_id])
|
20 |
|
|
|
14 |
|
15 |
|
16 |
if "problem" in st.query_params:
|
17 |
+
problem_id = int(st.query_params["problem"])
|
18 |
st.write(f"Problem Description - [{problem_id}]")
|
19 |
st.write(problem_dict[problem_id])
|
20 |
|