import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
class Solution {
public String solution(String myString, int num1, int num2) {
List<String> list = Arrays.stream(myString.split("")).collect(Collectors.toList());
Collections.swap(list, num1, num2);
return String.join("", list);
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 합성수 찾기 (0) | 2023.02.03 |
---|---|
[프로그래머스] 369게임 (0) | 2023.02.03 |
[Web] HTTP 요청 메서드 (0) | 2023.01.26 |
[프로그래머스] 옹알이(1) (0) | 2023.01.25 |
[백준] 15829번 (0) | 2023.01.24 |