Elfsong commited on
Commit
71d997f
·
1 Parent(s): 83b66cb
Files changed (1) hide show
  1. app.py +1 -1
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