import numpy as np def gen_random_dist(N, a, b): res = np.zeros(N) ### START YOUR CODE HERE ### #### END YOUR CODE HERE #### return res