Skip to content

Commit 7db66dd

Browse files
committed
docs: 1주차 문제에 찾기 편하게 name tag 추가
1 parent 03f0f27 commit 7db66dd

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

house-robber/renovizee.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11

2+
// tag renovizee 1week unresolved
23
// https://github.com/DaleStudy/leetcode-study/issues/264
34
// https://leetcode.com/problems/house-robber/
5+
// DP 자체에 대한 설명 : https://www.youtube.com/watch?v=0bqfTzpWySY
46
class Solution {
57
public int rob(int[] nums) {
68

top-k-frequent-elements/renovizee.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11

2+
// tag renovizee 1week unresolved
23
// https://github.com/DaleStudy/leetcode-study/issues/237
34
// https://leetcode.com/problems/top-k-frequent-elements/
45
class Solution {
6+
57
public int[] topKFrequent(int[] nums, int k) {
68
int[] result = {1, 2, 3};
79

0 commit comments

Comments
 (0)