📝 Level 0. 문자 반복 출력하기
더보기
더보기
📌 문제 설명
문자열 my_string과 정수 n이 매개변수로 주어질 때, my_string에 들어있는 각 문자를 n만큼 반복한 문자열을 return 하도록 solution 함수를 완성해보세요.
📌 제한사항
- 2 ≤ my_string 길이 ≤ 5
- 2 ≤ n ≤ 10
- "my_string"은 영어 대소문자로 이루어져 있습니다.
📌 입출력 예
my_string | n | result |
"hello" | 3 | "hhheeellllllooo" |
📌 입출력 예 설명
입출력 예 #1
"hello"의 각 문자를 세 번씩 반복한 "hhheeellllllooo"를 return 합니다.
✏️ 나의 풀이
def solution(my_string, n):
answer = ''
for i in my_string:
answer += i * n
return answer
✏️ 다른 풀이
def solution(my_string, n):
return ''.join(i*n for i in my_string)
https://school.programmers.co.kr/learn/courses/30/lessons/120825
프로그래머스
SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프
programmers.co.kr
'Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스 Level 0] 점의 위치 구하기(Python) (0) | 2024.06.02 |
---|---|
[프로그래머스 Level 0] 짝수 홀수 개수(Python) (0) | 2024.05.29 |
[프로그래머스 Level 0] 특정 문자 제거하기(Python) (0) | 2024.05.27 |
[프로그래머스 Level 0] 배열 자르기(Python) (0) | 2024.05.24 |
[프로그래머스 Level 0] 최댓값 만들기 (1)(Python) (0) | 2024.05.21 |