Spaces:
Sleeping
Sleeping
File size: 513 Bytes
e427796 bcf9fc0 d34674e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import streamlit as st
def main():
st.title("Popular Data Structures")
if st.button("What are the most popular data structures?"):
st.write("Here are some of the most popular data structures:")
st.write("- Arrays")
st.write("- Linked Lists")
st.write("- Stacks")
st.write("- Queues")
st.write("- Hash Tables")
st.write("- Trees (e.g., Binary Trees, BST, AVL Trees)")
st.write("- Graphs")
if __name__ == "__main__":
main()
|