Skip to content

Commit f0710ec

Browse files
authored
Fixed sample testcase solution
1 parent 4526e64 commit f0710ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

challenges/medium/17_dot_product/challenge.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ <h2>Example 1:</h2>
2121
<h2>Example 2:</h2>
2222
<pre>Input: A = [0.5, 1.5, 2.5]
2323
B = [2.0, 3.0, 4.0]
24-
Output: result = 16.0 (0.5*2.0 + 1.5*3.0 + 2.5*4.0)</pre>
24+
Output: result = 15.5 (0.5*2.0 + 1.5*3.0 + 2.5*4.0)</pre>
2525
<h2>Constraints</h2>
2626
<ul>
2727
<li><code>A</code> and <code>B</code> have identical lengths</li>
2828
<li>1 ≤ <code>N</code> ≤ 100,000,000</li>
29-
</ul>
29+
</ul>

0 commit comments

Comments
 (0)