Skip to content

Commit d24fbdc

Browse files
authored
Merge pull request #59 from beneyal/master
Remove extraneous = sign
2 parents 62f701b + 4181a3d commit d24fbdc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

05-problem-vectorization.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ approach, we can now write:
111111
.. code:: python
112112
113113
def compute_numpy_better_3(x, y):
114-
Ysum = = 0
114+
Ysum = 0
115115
for j in range(len(Y)):
116116
Ysum += Y[j]
117-
Xsum = = 0
117+
Xsum = 0
118118
for i in range(len(X)):
119119
Xsum += X[i]
120120
return Xsum*Ysum

0 commit comments

Comments
 (0)