Skip to content

Commit

Permalink
update code style for js
Browse files Browse the repository at this point in the history
  • Loading branch information
gyt95 committed Dec 15, 2022
1 parent 3a01f21 commit 5694c8e
Showing 1 changed file with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: gyt95 ([email protected])
* @Date: 2022-12-15 10:51:54
* @Last Modified by: gyt95 ([email protected])
* @Last Modified time: 2022-12-15 10:56:26
* @Last Modified time: 2022-12-15 23:40:09
*/

/**
Expand All @@ -11,26 +11,26 @@
* @return {number[]}
*/
function twoSumBruteForce(nums, target) {
let n = nums.length;
// 两层循环,时间复杂度 O(n^2)
for (let i = 0; i < n; i++) {
for (let j = i + 1; j < n; j++) {
if (nums[i] + nums[j] === target) {
return [i, j]
}
let n = nums.length;
// 两层循环,时间复杂度 O(n^2)
for (let i = 0; i < n; i++) {
for (let j = i + 1; j < n; j++) {
if (nums[i] + nums[j] === target) {
return [i, j];
}
}
}
}
}

function twoSumHashTable(nums, target) {
// 辅助哈希表,空间复杂度 O(n)
let m = {}
// 单层循环,时间复杂度 O(n)
for (let i = 0; i < nums.length; i++) {
if (m[nums[i]] !== undefined) {
return [m[nums[i]], i]
} else {
m[target - nums[i]] = i;
// 辅助哈希表,空间复杂度 O(n)
let m = {};
// 单层循环,时间复杂度 O(n)
for (let i = 0; i < nums.length; i++) {
if (m[nums[i]] !== undefined) {
return [m[nums[i]], i];
} else {
m[target - nums[i]] = i;
}
}
}
}

0 comments on commit 5694c8e

Please sign in to comment.