Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -70,7 +70,7 @@ if sidebar_option == "Introductory Tutorial":
|
|
70 |
# Get input array from user
|
71 |
user_input = st.text_input("Enter the array elements separated by spaces:")
|
72 |
|
73 |
-
#
|
74 |
if user_input:
|
75 |
arr = list(map(int, user_input.split()))
|
76 |
|
|
|
70 |
# Get input array from user
|
71 |
user_input = st.text_input("Enter the array elements separated by spaces:")
|
72 |
|
73 |
+
# Display the radio button after user input is entered
|
74 |
if user_input:
|
75 |
arr = list(map(int, user_input.split()))
|
76 |
|