Question: Given two positive numbers, num _ 1 and num _ 2 , the function returns True if after removing all sequences of repeated digits from

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 , 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_1: int -> positive integer
num_2: int -> positive integer
Returns: bool -> True is num_1==num_2 after removing sequences of repeated
digits, False otherwise
Example:
>>> is_identical(51111315,51315) #1111 is replaced with 1,51315==51315
True
>>> is_identical(7006600,7706000) # 7060==7060
True
>>> is_identical(135,765)
False
>>> is_identical(2023,20)
False
Question #5: frequency(txt)5 pts
Returns a dictionary with the frequency count of each alphabet letter (in lowercase) in txt. You
cannot make assumptions about the contents in txt.
Preconditions and Postconditions
txt: non-empty str
Returns: dict -> frequency count
Useful methods:
The str.isalpha() method returns True if all characters in the string are alphabetic and there
is at least one character, False otherwise.
o 's'.isalpha() returns True
o '9'.isalpha() returns False

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!