Flatten List
Medium📝 Description
Flatten a nested list structure
Input Format
A nested list structure
Output Format
Flattened list
Constraints
Max nesting depth ≤ 10
🔍 Sample Input
1 2 3 4 5
✅ Sample Output
1 2 3 4 5
Code Editor
Please login to run and submit code.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run