This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # Results of averaging all | |
| # HANDS 12994800 AVG 4.7691522762951335 | |
| import itertools | |
| # Rank values for 15s | |
| rank_values = { | |
| 'A': 1, '2': 2, '3': 3, '4': 4, '5': 5, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import sys | |
| import os | |
| # prints name of newest file - ignores directories | |
| # 3 cases | |
| # list of files | |
| # a single argument that is a directory |