상세 컨텐츠

본문 제목

[코딩테스트 입문] 외계어 사전(Python3)

Coding/Programmers

by Soo_buglosschestnut 2022. 11. 7. 23:41

본문

[코딩테스트 입문] 외계어 사전(Python3)


어느정도 문제 풀다보니 나름 익숙해졌다!

이번에도 Lv.0!

 

https://school.programmers.co.kr/learn/courses/30/lessons/120869?language=python3 

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

def solution(spell, dic):
    real = 0
    for i in range(len(dic)):
        count = 0
        for j in range(len(spell)):
            if spell[j] in dic[i] :
                print(spell[j])
                count +=1
        if count == len(spell):
            real += 1

    if real >=1:
        answer = 1
    else:
        answer = 2
    return answer

이것도 종이에 쓰면서 했다ㅎㅎ!

 

다른사람들의 code를 보니 신기한 마음뿐!!!

관련글 더보기