(original) (raw)

old_skipped = new_skipped = 0 old_seen = new_seen = 0 survivors = 0 # will always equal new_skipped print " total old_inspected new_inspected" for total in range(1, 10000): if old_skipped < 9: old_skipped += 1 old_tag = ' ' else: # Old Collection old_skipped = 0 old_seen += total old_tag = '*' if new_skipped < 9 or survivors*10 < total: survivors += 1 new_skipped += 1 new_tag = ' ' else: # New Collection survivors = 0 new_skipped = 0 new_seen += total new_tag = '*' if old_tag=='*' or new_tag=='*': print "%5d %10d%s %10d%s" % (total, old_seen, old_tag, new_seen, new_tag)