Question #4: is identical(num 1, num 2) 10 pts Given two positive numbers, num 1 and num 2, the function returns True if after removing all sequences of repeated digits from both integers and replacing it with only one instance, num 1 is equal to nu 2, False otherwise. You are NOT allowed to type convert num to a string <str(num)>, add the digits into a list to traverse or process the number, or to use of the math module
Preconditions and Postconditions
num 1: int -> positive integer num_2: int -> positive integer
digits, False otherwise
Example:
>>> is identical(51111315, 51315) #1111 is replaced with 1, 51315 == 51315
True
>>> is identica1(7006600, 7706000) # 7060==7060
True >>> is_identical(135, 765) False >>> is_identical(2023, 20) False