Skip to content

Commit

Permalink
Update js code style in space_time_tradeoff.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gyt95 committed Dec 15, 2022
1 parent 5694c8e commit 94d5de6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/chapter_computational_complexity/space_time_tradeoff.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,16 +204,16 @@ comments: true

```js title="leetcode_two_sum.js"
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;
}
}
}
}
```

Expand Down

0 comments on commit 94d5de6

Please sign in to comment.