sw expert academy-2046. 스탬프 찍기-python
풀이
- python은 문자열 * 숫자를 하면 문자가 숫자만큼 반복된다
코드
# https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=1&contestProbId=AV5QKdT6AyYDFAUq&categoryId=AV5QKdT6AyYDFAUq&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=1&pageSize=10&pageIndex=1&&&&&&&&&&
# sw expert academy, d1: 2046. 스탬프 찍기, python3
def solve(n: int) -> str:
return '#' * n
if __name__ == '__main__':
n = int(input())
print(solve(n))
결과
출처 & 깃허브
Author And Source
이 문제에 관하여(sw expert academy-2046. 스탬프 찍기-python), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@cosmos/sw-expert-academy-2046.-스탬프-찍기-python저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)