...

/

Challenge: Remove Even Integers from List

Challenge: Remove Even Integers from List

Try to solve the Remove Even Integers From List problem.

Statement

Given a list of integers, lst, remove all the even integers from the list.

Constraints:

  • 11 \leq lst.length 103\leq 10^3
  • 105-10^5 \leq lst[i] 105\leq 10^5

Examples

canvasAnimation-image
1 / 4

Try it yourself

Implement your solution in the following coding playground.

Python
usercode > main.py
def remove_even(lst):
# Replace this placeholder return statement with your code
return []
Remove Even Integers From List

Access this course and 1200+ top-rated courses and projects.