Remove All Occurrences

Easy

📝 Description

Remove all instances of given element from list

Input Format

First line: space-separated list Second line: element to remove

Output Format

List with element removed

Constraints

List size ≤ 1000

🔍 Sample Input

1 2 3 2 4 2
2
            

✅ Sample Output

1 3 4
            

Code Editor

Please login to run and submit code.

Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run