Skip to content

Commit 38a445e

Browse files
Update 0018 - 4Sum.md
1 parent d0287c1 commit 38a445e

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

dsa-solutions/lc-solutions/0000-0099/0018-4Sum.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: 4Sum
33
title: 4Sum (LeetCode)
4-
sidebar_label: 0018-4Sum
4+
sidebar_label: 0018-4Sum.md
55
tags:
66
- Arrays
77
- Hashing
@@ -21,9 +21,9 @@ description: Given an array `nums` of `n` integers, return an array of all the u
2121
| LeetCode Profile
2222
|
2323
| :----------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------ | :------------------------------------------------- |
24-
| [4Sum](https://leetcode.com/problems/4Sum/)
25-
| [4Sum Solution on LeetCode](https://leetcode.com/problems/4Sum/solutions/5055810/video-two-pointer-solution/)
26-
| [gabaniyash846](https://leetcode.com/u/gabaniyash846/) |
24+
| [4Sum](https://leetcode.com/problems/4sum/description/)
25+
| [4Sum Solution on LeetCode](https://leetcode.com/submissions/detail/1282735174/)
26+
| [Saini_Nikita]https://leetcode.com/submissions/detail/1282735174/ |
2727

2828
### Problem Description
2929

@@ -221,11 +221,10 @@ public:
221221

222222
#### JavaScript
223223
```js
224-
/**
225-
* @param {number[]} nums
226-
* @param {number} target
227-
* @return {number[][]}
228-
*/
224+
@param {number[]} nums
225+
@param {number} target
226+
@return {number[][]}
227+
229228
var fourSum = function(nums, target) {
230229
let result = [];
231230
if (nums.length < 4) return result;

0 commit comments

Comments
 (0)