[프로그래머스] Lv2 - 최댓값과 최솟값

김멉덥·2023년 8월 30일
0

알고리즘 공부

목록 보기
90/171
post-thumbnail
post-custom-banner

문제

프로그래머스 연습문제


코드 구현

def solution(s):
    answer = ''

    s = list(s.split(" "))
    s = list(map(int, s))
    answer += str(min(s)) + " " + str(max(s))

    return answer

풀이

  • split()으로 공백을 기준으로 쪼개어 숫자들만 포함하는 리스트를 생성 → map()으로 int형으로 형태 변환 → 최댓값과 최솟값을 max()min() 으로 찾아서 answer에 더해줌

What I learned

split하고 map하는 부분을 간략하게 한줄로도 줄일 수 있었다.

s = list(map(int,s.split()))
profile
데굴데굴 뚝딱뚝딱 개발기록
post-custom-banner

0개의 댓글