Given a target mean k, and array A, find the number of subarrays in array A such that the arithmetic mean is k.
Input: A = [1,3,4,5,6] k = 3 Answer: 2 # [3] and [1,3,4]