We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30cf38c commit 1b79a78Copy full SHA for 1b79a78
1 file changed
CH40208/monte_carlo/estimating_pi.md
@@ -66,7 +66,6 @@ def plot_random_points(points):
66
for x, y in points:
67
if x**2 + y**2 < 1.0:
68
plt.plot(x, y, 'o', color='red', alpha=0.5, markersize=5)
69
- n_inside += 1
70
else:
71
plt.plot(x, y, 'o', color='blue', alpha=0.5, markersize=5)
72
0 commit comments