Skip to content

Commit 3b0f512

Browse files
authored
Update dot-product-of-two-sparse-vectors.py
1 parent 8744f18 commit 3b0f512

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Python/dot-product-of-two-sparse-vectors.py

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ def __init__(self, nums):
99
"""
1010
self.lookup = {i:v for i, v in enumerate(nums) if v}
1111

12-
# Return the dotProduct of two sparse vectors
1312
def dotProduct(self, vec):
1413
"""
1514
:type vec: 'SparseVector'

0 commit comments

Comments
 (0)