Write a small function that returns the values of an array that are not odd. All values in the array will be integers. Return the good values in the order they are given. Solution: class NoOdd: def __init__(self): self.__values: list[int] = [] def run(self, values: list[int]) -> list[int]: self._set_values(values) self._remove_odd() return self._get_values() def _set_values(self, values) -> None..