From dc143aa1abe0eb131c2b005301770972a2f62d03 Mon Sep 17 00:00:00 2001 From: Preetham V R Date: Fri, 21 Aug 2026 13:10:15 +0530 Subject: [PATCH] Clarify Q93 wording: at least one element per row, fixes #226 --- source/exercises100.ktx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/exercises100.ktx b/source/exercises100.ktx index 34fd6f9..84c6035 100644 --- a/source/exercises100.ktx +++ b/source/exercises100.ktx @@ -1444,7 +1444,7 @@ x = np.random.rand(int(5e7)) %timeit np.einsum('i,i,i->i',x,x,x) < q93 -Consider two arrays A and B of shape (8,3) and (2,2). How to find rows of A that contain elements of each row of B regardless of the order of the elements in B? (★★★) +Consider two arrays A and B of shape (8,3) and (2,2). How to find rows of A that contain at least one element of each row of B regardless of the order of the elements in B? < h93 hint: np.where