I changed some code such as rolls and other things..

This commit is contained in:
mdecker6
2025-10-30 12:55:05 -04:00
parent a93273056f
commit 6ade1c83c7
3 changed files with 14 additions and 2 deletions

View File

@@ -20,8 +20,8 @@ class FiveDice:
return True
dice = FiveDice()
successes = 0
trials = 1000000
successes = 3
trials = 10
for trial in tqdm(range(trials)):
dice.roll()
if dice.all_ones():