diff --git a/docs/wi24-final/index.html b/docs/wi24-final/index.html index bb074b8..413b9f1 100644 --- a/docs/wi24-final/index.html +++ b/docs/wi24-final/index.html @@ -363,13 +363,29 @@
If we replace ???
with "inner"
in the
-code above, which of the following will be equal to
-combined.shape[0]
?
If we replace ???
with "outer"
in the
-code above, which of the following will be equal to
-combined.shape[0]
?
???
with "inner"
in the code
+above, which of the following will be equal to
+combined.shape[0]
? min(cond1.sum(), cond2.sum())
(cond1 & cond2).sum()
cond1.sum() + cond2.sum()
cond1.sum() + cond2.sum() - (cond1 & cond2).sum()
cond1.sum() + (cond1 & cond2).sum()
???
with "outer"
in the code
+above, which of the following will be equal to
+combined.shape[0]
? min(cond1.sum(), cond2.sum())
(cond1 & cond2).sum()
cond1.sum() + cond2.sum()
cond1.sum() + cond2.sum() - (cond1 & cond2).sum()
cond1.sum() + (cond1 & cond2).sum()