728x90
def solution(n_str):
answer = ''
n_str_list = list(n_str)
for i in range(len(n_str)):
if '0' == n_str_list[0]:
n_str_list = n_str_list[1:len(n_str_list)]
answer = ''.join(n_str_list)
return answer
#다른 사람의 풀이
# def solution(n_str):
# return str(int(n_str)) // int 로 정수로 만듬, 0011 -> 11
728x90
'코딩테스트 > Python' 카테고리의 다른 글
프로그래머스 스쿨 - 최댓값과 최솟값(Python)(복습) (0) | 2023.10.22 |
---|---|
프로그래머스 스쿨 - 올바른 괄호(Python)(복습) (0) | 2023.10.21 |
프로그래머스 스쿨 - 정수 삼각형(Python)(복습) (0) | 2023.10.14 |
프로그래머스 스쿨 - 최솟값 만들기(Python)(복습) (0) | 2023.10.13 |
프로그래머스 스쿨 - 이진 변환 반복하기(Python)(복습) (0) | 2023.10.10 |