코드로 우주평화

1203. String repeat 본문

나는 이렇게 학습한다/Algorithm & SQL

1203. String repeat

daco2020 2022. 12. 4. 01:02

Write a function that accepts an integer n and a string s as parameters, and returns a string of s repeated exactly n times.

Examples (input -> output)

6, "I"     -> "IIIIII"
5, "Hello" -> "HelloHelloHelloHelloHello"



Solution:

String repeatString(int n, String s) {
  String result = '';
  for (int i=0; i<n; i++) {
    result += s;
  }
  return result;
}
String repeatString(int n, String s) => s * n;


'나는 이렇게 학습한다 > Algorithm & SQL' 카테고리의 다른 글

1205. Sum of Cubes  (0) 2022.12.05
1204. Odd or Even?  (0) 2022.12.04
1202. Count by X  (0) 2022.12.02
1201. Is the string uppercase?  (0) 2022.12.01
1130. Square(n) Sum  (0) 2022.11.30