Create a function that determines the minimum number of characters needed to make a strong password.
A password is considered strong if it satisfies the following criteria:
!@#$%^&*()-+Types of characters in a form you can paste into your solution:
numbers = "0123456789"
lower_case = "abcdefghijklmnopqrstuvwxyz"
upper_case = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
special_characters = "!@#$%^&*()-+"
strong_password(“Ed1”) ➞ 3
strong_password(“#Innokodakademija”) ➞ 1
strong_password("W1llth!spass?") ➞ 0
Try solving this without RegEx.