This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__author__ = 'VHarisop' | |
''' original idea from mpetyx <github.com/mpetyx> | |
Generates Hardy-Ramanujan Numbers up to 250000 in under 1 sec. | |
''' | |
import sys | |
rng = int(sys.argv[1]) | |
hrs = [0] * (2 * rng ** 3 + 1) | |
for x in range(1, rng): |