- Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathassignment.py
More file actions
Latest commit
21 lines (16 loc) · 405 Bytes
/
Copy pathassignment.py
File metadata and controls
21 lines (16 loc) · 405 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
importnumpyasnp
defhello_world() ->str:
"""
Implement a function that returns Hello World!
"""
raiseNotImplementedError()
defadd_two(number: int) ->int:
"""
Adds two to `number`
"""
raiseNotImplementedError()
defzero_array(N: int) ->np.ndarray:
"""
Returns a double type ndarray of length N filled with zeros
"""
raiseNotImplementedError()