Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/neetcode-gh/leetcode
/ getProduct
Function
getProduct
javascript/0043-multiply-strings.js:59–63 ·
view source on GitHub ↗
(num1, i, num2, j)
Source
from the content-addressed store, hash-verified
57
};
58
59
var
getProduct = (num1, i, num2, j) => {
60
const
[iNum, jNum] = [Number(num1[i]), Number(num2[j])];
61
62
return
iNum * jNum;
63
};
64
65
/**
66
* Matrix
Callers
1
update
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected