Problem
Make a static recursive method called countGInt. The method should take in two parameters: an array of ints, and a single int. The method should return the number of values in the array greater than the given int. This method needs to be recursive, and no iterative loops (for/while) should be used in your solution. You may find it useful to write multiple methods, (ie using a 'helper' method).