Skip to content

Commit

Permalink
'Solution'
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitriy527 committed Jan 25, 2025
1 parent 2a21891 commit b7f47c2
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,18 @@


def flip_coin() -> dict:
our_dict: dict = {0: 0, 1: 0, 2: 0, 3: 0, 4: 0, 5: 0, 6: 0, 7: 0, 8: 0, 9: 0, 10: 0}
our_dict: dict = {
0: 0,
1: 0,
2: 0,
3: 0,
4: 0,
5: 0,
6: 0,
7: 0,
8: 0,
9: 0,
10: 0}
for raz in range(0, 10001):
orel = 0
for i in range(1, 11):
Expand Down

0 comments on commit b7f47c2

Please sign in to comment.