sw expert academy-1926. 간단한 369게임-python
풀이
- 문제를 꼼꼼히 읽어야하는 문제이다.
- 예를 들어 365는 --5가 아닌 --가 되어야한다.
- range로 입력받은 수까지 string형으로 초기화한 후, 반복문으로 순회하면서 접근하면 된다.
코드
# https://swexpertacademy.com/main/solvingProblem/solvingProblem.do
# sw expert academy, d2: 1926. 간단한 369게임, python3
import sys
input = sys.stdin.readline
def solve(n: int) -> list:
nums = [str(x) for x in range(1, n+1)]
for x in range(n):
trans = ''
for y in nums[x]:
if y in ['3', '6', '9']:
trans += '-'
nums[x] = trans
return nums
if __name__ == '__main__':
n = int(input())
print(*solve(n))
결과
출처 & 깃허브
sw expert acadmey 1926. 간단한 369게임
github
Author And Source
이 문제에 관하여(sw expert academy-1926. 간단한 369게임-python), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@cosmos/sw-expert-academy-1926.-간단한-369게임-python저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)