diff --git "a/lkhyun/202510/30 PGM Lv2 \354\212\244\355\202\254\355\212\270\353\246\254.md" "b/lkhyun/202510/30 PGM Lv2 \354\212\244\355\202\254\355\212\270\353\246\254.md" new file mode 100644 index 00000000..c197a4a4 --- /dev/null +++ "b/lkhyun/202510/30 PGM Lv2 \354\212\244\355\202\254\355\212\270\353\246\254.md" @@ -0,0 +1,36 @@ +```java +import java.util.*; +class Solution { + public int solution(String skill, String[] skill_trees) { + int answer = 0; + List[] adjList = new List[26]; + for(int i = 0; i<26; i++){ + adjList[i] = new ArrayList<>(); + } + int[] degree = new int[26]; + + for(int i = 0; i