[프로그래머스/파이썬] Level 1 두 정수 사이의 합
https://programmers.co.kr/learn/courses/30/lessons/12912
문제풀이
간단한 구현문제이다.
소스코드
def solution(a, b):
if a==b:
return a
if a>=b:
max_value=a
min_value=b
else:
max_value=b
min_value=a
result=0
for i in range(min_value,max_value+1):
result+=i
return result
Author And Source
이 문제에 관하여([프로그래머스/파이썬] Level 1 두 정수 사이의 합), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@bye9/프로그래머스파이썬-Level-1-두-정수-사이의-합저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)