See More

import numpy as np def hello_world() -> str: """ Implement a function that returns Hello World! """ raise NotImplementedError() def add_two(number: int) -> int: """ Adds two to `number` """ raise NotImplementedError() def zero_array(N: int) -> np.ndarray: """ Returns a double type ndarray of length N filled with zeros """ raise NotImplementedError()