Write a regular expression that matches a string if it contains at least one digit.
hasDigit("c8") ➞ true hasDigit("23cc4") ➞ true hasDigit("abwekz") ➞ false hasDigit("sdfkxi") ➞ false
This challenge is designed to use RegEx only.