Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 62fbfdf

Browse files
authored
Type annotations
1 parent 85a3bfb commit 62fbfdf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

javascript/78. Subsets.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* @param {number[]} nums
3+
* @return {number[][]}
4+
*/
15
var subsets = function(nums) {
26
let ans = new Array(), curr = [];
37
ans.push([]);

0 commit comments

Comments
 (0)