From 849335c854dda26050d1bbb48dbe729b30d90751 Mon Sep 17 00:00:00 2001 From: Anjali Silva <25417593+anjalisilva@users.noreply.github.com> Date: Sun, 22 Mar 2026 19:09:12 -0500 Subject: [PATCH] Fix shape of random integers array in statistics.md Fix mismatch between comment and code, such that code match comment instructions --- 24_Day_Statistics/24_statistics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24_Day_Statistics/24_statistics.md b/24_Day_Statistics/24_statistics.md index 70ffaddf7..270357a5f 100644 --- a/24_Day_Statistics/24_statistics.md +++ b/24_Day_Statistics/24_statistics.md @@ -1052,7 +1052,7 @@ rand2 ```python # Random integers between [0, 10) of shape 2,5 -rand_int = np.random.randint(0, 10, size=[5,3]) +rand_int = np.random.randint(0, 10, size=[2,5]) rand_int ```