mirror of
https://github.com/krahets/hello-algo.git
synced 2025-07-25 03:08:54 +08:00
Add semicolon in test
This commit is contained in:
@ -34,9 +34,10 @@ function twoSumHashTable(nums, target) {
|
|||||||
/* Driver Code */
|
/* Driver Code */
|
||||||
// 方法一
|
// 方法一
|
||||||
const nums = [2, 7, 11, 15], target = 9;
|
const nums = [2, 7, 11, 15], target = 9;
|
||||||
let res = twoSumBruteForce(nums, target)
|
|
||||||
console.log("方法一 res = ", res)
|
let res = twoSumBruteForce(nums, target);
|
||||||
|
console.log("方法一 res = ", res);
|
||||||
|
|
||||||
// 方法二
|
// 方法二
|
||||||
res = twoSumHashTable(nums, target)
|
res = twoSumHashTable(nums, target);
|
||||||
console.log("方法二 res = ", res)
|
console.log("方法二 res = ", res);
|
||||||
|
Reference in New Issue
Block a user