Python: nth Hamming number
Python Itertools: Exercise-26 with Solution
Write a Python program to find the nth Hamming number. User itertools module.
Hamming numbers are numbers of the form
H = 2i x 3j x 5k
Where i, j, k ≥ 0
The sequence of Hamming numbers 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 16, 18, 20, 24, 25, 27. . . consists of all numbers of the form 2i.3j.5k where i, j and k are non-negative integers.
Sample Solution:
Python Code:
import itertools
from heapq import merge
def nth_hamming_number(n):
def num_recur():
last = 1
yield last
x, y, z = itertools.tee(num_recur(), 3)
for n in merge((2 * i for i in x), (3 * i for i in y), (5 * i for i in z)):
if n != last:
yield n
last = n
result = itertools.islice(num_recur(), n)
return list(result)[-1]
print(nth_hamming_number(8))
print(nth_hamming_number(14))
print(nth_hamming_number(17))
Sample Output:
9 20 27
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to find the first two elements of a given list whose sum is equal to a given value. Use itertools module to solve the problem.
Next: Write a Python program to chose specified number of colours from three different colours and generate the unique combinations.
What is the difficulty level of this exercise?
Test your Python skills with w3resource's quiz
Python: Tips of the Day
- New Content published on w3resource:
- Scala Programming Exercises, Practice, Solution
- Python Itertools exercises
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- React - JavaScript Library
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework