[프로그래머스] 인덱스 바꾸기 - Java

Yunki Kim·2023년 1월 2일
0

프로그래머스

목록 보기
60/101

문제


링크


코드

class Solution {
    public String solution(String my_string, int num1, int num2) {
        StringBuilder sb = new StringBuilder(my_string);
        char temp = sb.charAt(num1);
        sb.setCharAt(num1, sb.charAt(num2));
        sb.setCharAt(num2, temp);

        return sb.toString();
    }
}

리뷰

두 수 바꾸기와 동일한 매커니즘이다.

charAt으로 한 단어를 가져오고 SetCharAt으로 위치를 바꿔주었다.

0개의 댓글