You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>길이가 같은 두 1차원 정수 배열 a, b가 매개변수로 주어집니다. a와 b의 <ahref="https://en.wikipedia.org/wiki/Dot_product"target="_blank"rel="noopener">내적</a>을 return 하도록 solution 함수를 완성해주세요.</p>
24
+
25
+
<p>이때, a와 b의 내적은 <code>a[0]*b[0] + a[1]*b[1] + ... + a[n-1]*b[n-1]</code> 입니다. (n은 a, b의 길이)</p>
0 commit comments