Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
4
Task/McNuggets-problem/Python/mcnuggets-problem-3.py
Normal file
4
Task/McNuggets-problem/Python/mcnuggets-problem-3.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#Wherein I observe that Set Comprehension is not intrinsically dysfunctional. Nigel Galloway: October 28th., 2018
|
||||
n = {n for x in range(0,101,20) for y in range(x,101,9) for n in range(y,101,6)}
|
||||
g = {n for n in range(101)}
|
||||
print(max(g.difference(n)))
|
||||
Loading…
Add table
Add a link
Reference in a new issue