1
0
Fork 0
mirror of https://github.com/correl/euler.git synced 2025-04-05 09:12:26 -09:00

Modified 054

git-svn-id: file:///srv/svn/euler@18 e5f4c3ec-3c0c-11df-b522-21efaa4426b5
This commit is contained in:
Correl Roush 2010-04-12 15:52:58 +00:00
parent 628861e107
commit 127c09387d

4
054.py
View file

@ -1,9 +1,9 @@
import poker
from p054 import poker
if __name__ == '__main__':
wins = 0
counter = 0
with open('poker.txt', 'r') as f:
with open('p054/poker.txt', 'r') as f:
while True:
line = f.readline()
if not line: