Automated grading of homework assignments and tests
- fork this repository
- solve the task
- commit with proper message
Convert the list of numeric values to a one-dimensional NumPy array.
Example 1:
Input: [1, 0, 4, 3]
Output:[1 0 4 3]
Example 2:
Input: [1, True, 4, 3.0]
Output:[1. 1. 4. 3.]
Constraints:
- dtype = np.float8
- don't copy other solutions or any solution
- don't remove comments