Skip to content

Commit 3c40526

Browse files
authored
Merge branch 'master' into contact-book-python-textual
2 parents 2aa19cc + 11f745c commit 3c40526

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

where/all_code.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@
567567
{
568568
"data": {
569569
"text/plain": [
570-
"(array([0, 1, 2]), array([0, 1, 2]))"
570+
"(array([0, 1, 1, 2]), array([0, 1, 2, 2]))"
571571
]
572572
},
573573
"execution_count": 23,
@@ -578,7 +578,7 @@
578578
"source": [
579579
"import numpy as np\n",
580580
"\n",
581-
"mostly_zeroes = np.array([[9, 0, 0], [0, 8, 0], [0, 0, 7]])\n",
581+
"mostly_zeroes = np.array([[9, 0, 0], [0, 8, 5], [0, 0, 7]])\n",
582582
"np.where(mostly_zeroes != 0)"
583583
]
584584
},
@@ -591,7 +591,7 @@
591591
{
592592
"data": {
593593
"text/plain": [
594-
"(array([0, 1, 2]), array([0, 1, 2]))"
594+
"(array([0, 1, 1, 2]), array([0, 1, 2, 2]))"
595595
]
596596
},
597597
"execution_count": 24,

0 commit comments

Comments
 (0)