일상적 이야기들.

codewar: Remove First and Last Character 본문

프로그래밍/알고리즘 문제풀이

codewar: Remove First and Last Character

noveljava 2019. 6. 25. 12:00

문제

 - https://www.codewars.com/kata/remove-first-and-last-character/

 

문제풀이

 - 첫문자와 마지막 문제를 제거하는 문제입니다.

 - substring을 이용하여 "두번째, 마지막 전" 까지를 설정하여 문자를 가져오면 됩니다.

public class RemoveChars {
    public static String remove(String str) {

        // your code here
        return str.substring(1, str.length()-1);
    }
}

 

'프로그래밍 > 알고리즘 문제풀이' 카테고리의 다른 글

codewar: Convert a String to Number!  (0) 2019.07.02
codewar: Where is THB?  (0) 2019.07.02
codewar: Fun with lists:indexOf  (0) 2019.06.25
codewar: int32 to IPv4  (0) 2019.06.21
codewar: Errors: histogram  (0) 2019.06.21
Comments