Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solution #647

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1 +1,27 @@
# write your code here
import random
import matplotlib.pyplot as plt


def flip_coin() -> dict:
coins = {num: 0 for num in range(11)}
for _ in range(10000):
temp = 0
for _ in range(10):
if random.choice([True, False]):
temp += 1
coins[temp] += 1
coins_res = {key: coins[key] / 100 for key in coins.keys()}
return coins_res


def draw_gaussian_distribution_graph(coins: dict) -> None:
xarr = [num for num in coins.keys()]
yarr = [num for num in coins.values()]

plt.plot(xarr, yarr)

plt.title("Gaussian distribution")
plt.xlabel("Heads count")
plt.ylabel("Drop percentage %")

plt.show()
Loading