Question: is _ identical ( num _ 1 , num _ 2 ) 1 0 pts Given two positive numbers, num _ 1 and num _
isidenticalnum num pts
Given two positive numbers, num and num the function returns True if after removing all
sequences of repeated digits from both integers and replacing it with only one instance, num is
equal to nu False otherwise.
You are NOT allowed to type convert num to a string use lists in any form, add
the digits into a list to traverse or process the number, or to use of the math module
Preconditions and Postconditions
num: int positive integer
num: int positive integer
Returns: bool True is numnum after removing sequences of repeated
digits, False otherwise
Example:
isidentical # is replaced with
True
isidentical #
True
isidentical
False
isidentical
False
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
