A password is considered strong if all the following conditions are met:
Write a function that takes a string str and return the MINIMUM change required to make it a strong password. If it's already strong, return 0.
strongPasswordChecker("Mypass!") ➞ 1
// 7 characters total, need to add one more digit for a strong password.
strongPasswordChecker("mypass1!") ➞ 1
// 8 characters total, need to add an uppercase letter.
strongPasswordChecker("ABCDEFGHIJKLMNOPQRSTU") ➞ 3
// 21 characters, only uppercase, need to delete one and replace two.
strongPasswordChecker("Mypaaaass!1") ➞ 1
// Contains 4 'a's in a row.