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