We mentioned how to find the number of elements in the array. There is another attribute of the array, ndarray.itemsize, which will return the length of one array element in bytes.
Complete the memory_size function which accepts a NumPy array as the argument and returns the memory size of an array (in bytes).