Update Problems
Browse files
app.py
CHANGED
|
@@ -5,7 +5,13 @@ st.title("Code Arena")
|
|
| 5 |
tab_problem, tab_model = st.tabs(["Problems", "Models"])
|
| 6 |
|
| 7 |
with tab_problem:
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
with tab_model:
|
| 11 |
st.header("Models")
|
|
|
|
| 5 |
tab_problem, tab_model = st.tabs(["Problems", "Models"])
|
| 6 |
|
| 7 |
with tab_problem:
|
| 8 |
+
for problem in range(10):
|
| 9 |
+
with st.container(border=True):
|
| 10 |
+
id_col, title_col, difficulty_col, dp_col = st.columns(4)
|
| 11 |
+
id_col.write(problem)
|
| 12 |
+
title_col.write(problem)
|
| 13 |
+
difficulty_col.write(problem)
|
| 14 |
+
dp_col.write(problem)
|
| 15 |
|
| 16 |
with tab_model:
|
| 17 |
st.header("Models")
|