IT보안관의 공부 클라우드
[프로그래머스 Level2]스킬트리 본문
https://programmers.co.kr/learn/courses/30/lessons/49993?language=python3
def solution(skill, skill_trees):
answer = 0
chk = []
for s in skill_trees:
a = [i for i in s if i in skill]
chk.append(a)
for ch in chk:
a=1
for i,c in enumerate(ch):
if skill[i] != c:
a=0
break
if a== 1:
answer+=1
return answer
'코딩 테스트 > 프로그래머스' 카테고리의 다른 글
[프로그래머스 Level2]가장 큰 수 (0) | 2022.07.09 |
---|---|
[프로그래머스 Level2]멀리 뛰기 (0) | 2022.07.06 |
[프로그래머스 Level2]게임 맵 최단거리 (0) | 2022.07.04 |
[프로그래머스 Level2]예상 대진표 (0) | 2022.07.02 |
[프로그래머스 Level2]다음 큰 숫자 (0) | 2022.07.02 |
Comments