Basic regex tasks. Write a function that takes in a numeric code of any length. The function should check if the code
begins with 1, 2, or 3 and return true if so. Return false otherwise.
You can assume the input will always be a number.
def validate_code(code)
/^[123]/.match?(code.to_s)
enddef validate_code(code)
/\A[123]/ === code.to_s
end