Skip to content

Commit 1a194e7

Browse files
committed
fix: valid-palindrome의 공간복잡도를 O(1)로 수정
1 parent 74cea70 commit 1a194e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

valid-palindrome/reach0908.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* 시간복잡도: O(N)
3-
* 공간복잡도: O(N)
3+
* 공간복잡도: O(1)
44
* @param {string} s
55
* @return {boolean}
66
*/

0 commit comments

Comments
 (0)