본문 바로가기
코딩테스트/Python

프로그래머스 스쿨 - 배열 두 배 만들기(Python)

by 보안매크로 2023. 9. 4.
728x90
def solution(my_string, target):
    answer = 0
    if target in my_string:
        return 1
    return answer


# 다른 사람의 풀이
# def solution(my_string, target):
#     return int(target in my_string)
728x90