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:
-
lst.length
-
lst[i]
Examples
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 codereturn []
Click "Run" to evaluate your code.
Remove Even Integers From List