import streamlit as st
def main():
st.set_page_config(page_title="Popular Data Structures")
st.markdown(
"""
""",
unsafe_allow_html=True
)
st.markdown('
', unsafe_allow_html=True)
st.title("Popular Paradigms")
if st.button("What are the most popular NeetCode paradigms?"):
st.markdown("**Here are some of the most popular neet code paradigms:**")
st.markdown("- Arrays")
st.markdown("- Linked Lists")
st.markdown("- Stacks")
st.markdown("- Queues")
st.markdown("- Hash Tables")
st.markdown("- Trees (e.g., Binary Trees, BST, AVL Trees)")
st.markdown("- Graphs")
if __name__ == "__main__":
main()