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
| # Would you even remember your damn horse's name if I hadn't told you again? | |
| import numpy as np | |
| import tqdm | |
| # I been TELLIN' you to shut up! | |
| UPDATE_INTERVAL = 100000 | |
| class Deck(object): | |
| # Alright now, you sure them cards is all there? | |
| def __init__(self): |
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
| # Would you even remember your damn horse's name if I hadn't told you again? | |
| import numpy as np | |
| import tqdm | |
| # I been TELLIN' you to shut up! | |
| UPDATE_INTERVAL = 1000000 | |
| # Alright now, you sure them cards is all there? | |
| quarter_deck = range(1,14) | |
| quarter_deck = [i if i<10 else 10 for i in quarter_deck] |