Update app.py
Browse files
app.py
CHANGED
|
@@ -126,6 +126,9 @@ def main():
|
|
| 126 |
4. Continue this process until all elements are inserted in the correct order.
|
| 127 |
""")
|
| 128 |
|
|
|
|
|
|
|
|
|
|
| 129 |
elif algorithm == "Selection Sort":
|
| 130 |
st.subheader("Selection Sort Explanation")
|
| 131 |
st.write("""
|
|
|
|
| 126 |
4. Continue this process until all elements are inserted in the correct order.
|
| 127 |
""")
|
| 128 |
|
| 129 |
+
image = Image.open("insertion-sort.png") # Path to your image file
|
| 130 |
+
st.image(image, use_container_width=True)
|
| 131 |
+
|
| 132 |
elif algorithm == "Selection Sort":
|
| 133 |
st.subheader("Selection Sort Explanation")
|
| 134 |
st.write("""
|