Update app.py
Browse files
app.py
CHANGED
@@ -50,7 +50,7 @@ def animate_sorting(steps):
|
|
50 |
def main():
|
51 |
# Sidebar with two options: "Try Simulation" and "Detailed Explanation"
|
52 |
st.sidebar.title("Sorting Algorithm Options")
|
53 |
-
option = st.sidebar.radio("Choose an option:", ("
|
54 |
|
55 |
if option == "Try Simulation":
|
56 |
st.title("Sorting Algorithms Visualization")
|
|
|
50 |
def main():
|
51 |
# Sidebar with two options: "Try Simulation" and "Detailed Explanation"
|
52 |
st.sidebar.title("Sorting Algorithm Options")
|
53 |
+
option = st.sidebar.radio("Choose an option:", ("Detailed Explanation", "Try Simulation"))
|
54 |
|
55 |
if option == "Try Simulation":
|
56 |
st.title("Sorting Algorithms Visualization")
|