Revision history of "Unique digits addition - GPT OSS cleaned"

Jump to navigation Jump to search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 00:11, 24 August 2025Denny (talk | contribs). . (349 bytes) (+349). . (Created page with "<pre> def ok(a, b, c): digits = str(a) + str(b) + str(c) return len(set(digits)) == len(digits) solutions = set() MAX = 10_000 for a in range(1, MAX): for b in r...")