Skip to content

Commit 8a1541d

Browse files
committed
lint modify
1 parent 26dc9bf commit 8a1541d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

combination-sum/hoyeongkwak.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ function combinationSum(candidates: number[], target: number): number[][] {
1414
}
1515
}
1616
return dp[target]
17-
};
17+
};

decode-ways/hoyeongkwak.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ function numDecodings(s: string): number {
1717
return ways
1818
}
1919
return decode(0)
20-
}
20+
}

maximum-subarray/hoyeongkwak.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ function maxSubArray(nums: number[]): number {
1818
}
1919
}
2020
return maxSum
21-
};
21+
};

number-of-1-bits/hoyeongkwak.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ function hammingWeight(n: number): number {
1717
// const twoBits = n.toString(2)
1818
// const bitCount = twoBits.split('').filter((s) => s === '1').length
1919
// return bitCount
20-
};
20+
};

valid-palindrome/hoyeongkwak.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ function isPalindrome(s: string): boolean {
77
const splitS = s.replace(/[^a-zA-Z0-9]/g, '').toLowerCase()
88
const revS = splitS.split('').reverse().join('')
99
return splitS === revS
10-
};
10+
};

0 commit comments

Comments
 (0)