Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- math
- dynamic programming
- hash table
- 파이썬
- HTML
- 백준
- 자료구조
- 변수
- string
- array
- 프로그래머스
- vue.js
- JavaScript
- sorting
- java
- JS
- leetcode
- Algorithm
- github
- computed
- scss
- CSS
- JavaSceipt
- 코딩테스트
- greedy
- Python
- 자료형
- 알고리즘
- 컴포넌트
- SasS
Archives
- Today
- Total
Posis
[프로그래머스] 문자 반복 출력하기 본문
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120825?language=java
문제 설명
문자열 my_string과 정수 n이 매개변수로 주어질 때, my_string에 들어있는 각 문자를 n만큼 반복한 문자열을 return 하도록 solution 함수를 완성해보세요.
제한사항
- 2 ≤ my_string 길이 ≤ 5
- 2 ≤ n ≤ 10
- "my_string"은 영어 대소문자로 이루어져 있습니다.
입출력 예
my_stringn | result | |
"hello" | "hhheeellllllooo" |
입출력 예 설명
입출력 예 #1
- "hello"의 각 문자를 세 번씩 반복한 "hhheeellllllooo"를 return 합니다.
나의 풀이
Java
class Solution {
public String solution(String my_string, int n) {
String answer = "";
String[] str = new String[my_string.length()];
str = my_string.split("");
for(int i = 0; i < my_string.length(); i++) {
answer += str[i].repeat(n);
}
return answer;
}
}
JavaScript
function solution(my_string, n) {
let answer = '';
let str = my_string.split("");
for(let i = 0; i < str.length; i ++) {
for(let j = 0; j < n; j++) {
answer += str[i];
}
}
return answer;
}
728x90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 짝수는 싫어요 (0) | 2022.11.30 |
---|---|
[프로그래머스] 삼각형의 완성 조건(1) (0) | 2022.11.30 |
[프로그래머스] 최댓값 만들기(1) (0) | 2022.11.29 |
[프로그래머스] 편지 (0) | 2022.11.29 |
[프로그래머스] 점의 위치 구하기 (2) | 2022.11.29 |