Skip to content

Commit 75a9df6

Browse files
committed
refactor: made changes
1 parent 84b480e commit 75a9df6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_Problems_/3Sum/3sum.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var threeSum = function(nums) {
1+
const threeSum = function(nums) {
22
// sort the array
33
nums = nums.sort((a, b) => a - b);
44

0 commit comments

Comments
 (0)