[코딩뱃] [자바] Warmup - 2단계 : stringTimes 문제
https://codingbat.com/prob/p142270 CodingBat Java Warmup-2 stringTimes Given a string and a non-negative int n, return a larger string that is n copies of the original string.stringTimes("Hi", 2) → "HiHi"stringTimes("Hi", 3) → "HiHiHi"stringTimes("Hi", 1) → "Hi"Go...Save, Compile, Run (ctrl-enter)Show Solution codingbat.com = 문제 번역 = 문자열과 음수가 아닌 int n이 주어지면, 원래 문자열의 n개 복사본인 더 큰 문자열을 반환합니다. = 해설 ..
코딩테스트/Coding Bat
2021. 10. 10.