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' #573

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all 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
31 changes: 30 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1 +1,30 @@
# write your code here
import random

# import matplotlib.pyplot as plt


def flip_coin() -> dict:
num_trials = 10000
results = {i: 0 for i in range(11)}

for _ in range(num_trials):
num_heads = sum(random.choice([0, 1]) for _ in range(10))
results[num_heads] += 1

percentages = {key: (value / num_trials) * 100
for key, value in results.items()}
return percentages


# def draw_gaussian_distribution_graph(percentages: dict) -> None:
# plt.bar(percentages.keys(), percentages.values())
# plt.xlabel("Number of Heads")
# plt.ylabel("Percentage")
# plt.title("Gaussian Distribution of Coin Flips")
# plt.show()
#
#
# if __name__ == "__main__":
# percentages = flip_coin()
# print(percentages)
# draw_gaussian_distribution_graph(percentages)
Loading