Untitled
user_8840555
plain_text
2 years ago
187 B
8
Indexable
from itertools import *
c = 1
for i in product('0123456789ABCDE', repeat=6):
s = ''.join(i)
if s.count('0') > 2 and s[-1] == '9' and '23' not in s:
c += 1
print(c)Editor is loading...