From 1cedbc42421591524923c119744c516e60be825f Mon Sep 17 00:00:00 2001 From: nprimo Date: Wed, 29 Nov 2023 15:12:32 +0000 Subject: [PATCH] feat(numpy): update expected result for ex9 --- subjects/ai/numpy/audit/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/ai/numpy/audit/README.md b/subjects/ai/numpy/audit/README.md index 3537671de..a8fba4e3d 100644 --- a/subjects/ai/numpy/audit/README.md +++ b/subjects/ai/numpy/audit/README.md @@ -323,6 +323,6 @@ This can be done in three steps: Get the max, create a boolean mask that indicat ###### Is the output the following? ```console - [[2 9 6 0 8] - [1 3 5 7 4]] +[[0 1 2 3 5] +[8 7 9 4 6]] ```