Skip to content

Commit 1b79a78

Browse files
committed
fixing bugs
1 parent 30cf38c commit 1b79a78

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

CH40208/monte_carlo/estimating_pi.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ def plot_random_points(points):
6666
for x, y in points:
6767
if x**2 + y**2 < 1.0:
6868
plt.plot(x, y, 'o', color='red', alpha=0.5, markersize=5)
69-
n_inside += 1
7069
else:
7170
plt.plot(x, y, 'o', color='blue', alpha=0.5, markersize=5)
7271

0 commit comments

Comments
 (0)