File tree Expand file tree Collapse file tree 5 files changed +90
-0
lines changed Expand file tree Collapse file tree 5 files changed +90
-0
lines changed Original file line number Diff line number Diff line change 1+
2+
3+ // tag renovizee 3week
4+ // https://github.com/DaleStudy/leetcode-study/issues/254
5+ // https://leetcode.com/problems/valid-palindrome/ #39 #Medium
6+ class Solution {
7+ // Solv1 :
8+ // 시간복잡도 : O(n)
9+ // 공간복잡도 : O(n)
10+ public List <List <Integer >> combinationSum (int [] candidates , int target ) {
11+
12+ }
13+ }
14+
15+ //-------------------------------------------------------------------------------------------------------------
16+ // Java 문법 피드백
17+ //
18+ //-------------------------------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change 1+
2+
3+ // tag renovizee 3week
4+ // https://github.com/DaleStudy/leetcode-study/issues/268
5+ // https://leetcode.com/problems/valid-palindrome/ #91 #Medium
6+ class Solution {
7+ // Solv1 :
8+ // 시간복잡도 : O(n)
9+ // 공간복잡도 : O(n)
10+ public int numDecodings (String s ) {
11+
12+ }
13+ }
14+
15+ //-------------------------------------------------------------------------------------------------------------
16+ // Java 문법 피드백
17+ //
18+ //-------------------------------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change 1+
2+
3+ // tag renovizee 3week
4+ // https://github.com/DaleStudy/leetcode-study/issues/275
5+ // https://leetcode.com/problems/valid-palindrome/ #53 #Medium
6+ class Solution {
7+ // Solv1 :
8+ // 시간복잡도 : O(n)
9+ // 공간복잡도 : O(n)
10+ public int maxSubArray (int [] nums ) {
11+
12+ }
13+ }
14+
15+ //-------------------------------------------------------------------------------------------------------------
16+ // Java 문법 피드백
17+ //
18+ //-------------------------------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change 1+
2+
3+ // tag renovizee 3week
4+ // https://github.com/DaleStudy/leetcode-study/issues/232
5+ // https://leetcode.com/problems/valid-palindrome/ #191 #Easy
6+ class Solution {
7+ // Solv1 :
8+ // 시간복잡도 : O(n)
9+ // 공간복잡도 : O(n)
10+ public int hammingWeight (int n ) {
11+
12+ }
13+ }
14+
15+ //-------------------------------------------------------------------------------------------------------------
16+ // Java 문법 피드백
17+ //
18+ //-------------------------------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change 1+
2+
3+ // tag renovizee 3week
4+ // https://github.com/DaleStudy/leetcode-study/issues/220
5+ // https://leetcode.com/problems/valid-palindrome/ #125 #Easy
6+ class Solution {
7+ // Solv1 :
8+ // 시간복잡도 : O(n)
9+ // 공간복잡도 : O(n)
10+ public boolean isPalindrome (String s ) {
11+
12+ }
13+ }
14+
15+ //-------------------------------------------------------------------------------------------------------------
16+ // Java 문법 피드백
17+ //
18+ //-------------------------------------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments