andioop@programming.dev to Programming Horror@programming.devEnglish · edit-21 year agoGod I wish there was an easier way to do thisprogramming.devimagemessage-square51fedilinkarrow-up1208arrow-down121
arrow-up1187arrow-down1imageGod I wish there was an easier way to do thisprogramming.devandioop@programming.dev to Programming Horror@programming.devEnglish · edit-21 year agomessage-square51fedilink
minus-squaresloppy_diffuserlinkfedilinkEnglisharrow-up4·1 year agofor i in itertools.count(): ... will count to infinity. Better make it into a dictionary so it’s O(1) complexity instead of O(n) while you’re at it.
for i in itertools.count(): ...
will count to infinity.Better make it into a dictionary so it’s O(1) complexity instead of O(n) while you’re at it.