Create a function called plusHashCount
that returns the number of hashes and pluses in a string.
plusHashCount("###+") β [1, 3]
plusHashCount("##+++#") β [3, 3]
plusHashCount("#+++#+#++#") β [6, 4]
plusHashCount("") β [0, 0]
Good Luck π