This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param {number} n | |
* @return {string[]} | |
*/ | |
var generateParenthesis = function(n) { | |
let res = []; | |
function rec(open, close, string = "") { | |
if((open == close) && (open + close == 2*n)) { | |
res.push(string); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param {number[]} nums | |
* @return {number[][]} | |
*/ | |
var permute = function(nums, res = [], temp = []) { | |
if(nums.length === 0) res.push([...temp]); | |
for(let i=0; i<nums.length; i++) { | |
// Choose | |
temp.push(nums[i]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param {number[]} nums | |
* @return {number[][]} | |
*/ | |
var subsets = function(nums) { | |
let temp = []; | |
let res = []; | |
function rec(nums, i = 0) { | |
if(i === nums.length ) return res.push([...temp]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param {number[]} nums | |
* @return {string[]} | |
*/ | |
var summaryRanges = function(nums) { | |
let arr = []; | |
let start = nums[0]; | |
for(let i=0; i<nums.length; i++) { | |
if(nums[i+1] - nums[i] == 1) continue; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param {number} n | |
* @return {number} | |
*/ | |
var trailingZeroes = function(n) { | |
let x = 5; | |
let zeroes = 0; | |
while((n/x) >= 1) { | |
zeroes += Math.floor(n / x); | |
x = x * 5; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param {number} n | |
* @return {number} | |
*/ | |
var fib = function(n) { | |
if(n == 0) return 0; | |
if(n == 1) return 1; | |
return fib(n - 1) + fib(n - 2); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param {string} s | |
* @return {number} | |
*/ | |
var lengthOfLongestSubstring = function(s) { | |
let verifier = {}; | |
let i = 0; | |
let j = i+1; | |
let max = 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param {string} s | |
* @return {number} | |
*/ | |
var myAtoi = function(s) { | |
let num = 0; | |
let isNegative = false; | |
let numString = ""; | |
let hasEncountered = false; | |
let hasBeenPositive = false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param {string[]} strs | |
* @return {string} | |
*/ | |
var longestCommonPrefix = function(strs) { | |
if(strs.length == 0) return ""; | |
if(strs.length == 1) return strs[0]; | |
let prefix = strs[0]; | |
let prefixLen = prefix.length; |
NewerOlder