NumPy is conventionally imported as np. As a warm-up, return the Python list values converted into a NumPy array.
np
values
solve([1, 2, 3]) -> array([1, 2, 3])
solve(...)