PROGRAMMERS-962 행성에 불시착한 우주비행사 머쓱이는 외계행성의 언어를 공부하려고 합니다. 알파벳이 담긴 배열 spell
과 외계어 사전 dic
이 매개변수로 주어집니다. spell
에 담긴 알파벳을 한번씩만 모두 사용한 단어가 dic
에 존재한다면 1, 존재하지 않는다면 2를 return하도록 solution 함수를 완성해주세요
def solution(spell, dic):
for word in dic:
is_word = all(s in word for s in spell)
if is_word:
return 1
return 2
all(): 전부 true 일 때 true
any(): 하나라도 true 일 때 true
def solution(spell, dic):
spell = set(spell)
for s in dic:
if not spell-set(s):
return 1
return 2
스펠링 집합 - 문자열 집합
→ 아무 것도 없을 때 1 반환
ex) [’a’, ’x’] - [’a’, ‘j’, ‘a’, ‘x’] = []
→ 남는 것이 있으면 pass 마지막에 2 반환
ex) [’a’, ’x’] - [’a’, ‘d’, ‘b’, ‘z’] = [’x’]