Skip to content

Commit b961ec5

Browse files
committed
feat: Set up Week 3 problems
Adds the initial boilerplate files for the week 3 problems, including: - Valid Palindrome (Easy) - Number of 1 Bits (Easy) - Combination Sum (Medium) - Decode Ways (Medium) - Maximum Subarray (Medium)
1 parent eca2f02 commit b961ec5

File tree

5 files changed

+90
-0
lines changed

5 files changed

+90
-0
lines changed

combination-sum/renovizee.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
//-------------------------------------------------------------------------------------------------------------

decode-ways/renovizee.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
//-------------------------------------------------------------------------------------------------------------

maximum-subarray/renovizee.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
//-------------------------------------------------------------------------------------------------------------

number-of-1-bits/renovizee.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
//-------------------------------------------------------------------------------------------------------------

valid-palindrome/renovizee.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
//-------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)