Skip to content

group-2022B/numpy_creating_arrays_homework

Repository files navigation

Welcome

Numpy Creating Arrays

Automated grading of homework assignments and tests

  • fork this repository
  • solve the task
  • commit with proper message

Problems

array01

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

Warning

  • don't copy other solutions or any solution
  • don't remove comments

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages