class Solution { public int solution(String s) { int answer = Integer.parseInt(s); return answer; } } 1. Integer.parseInt는 양수든 음수든 문자열을 정수형으로 바꾸어준다. (예 : s가 "-1234"면 answer = -1234 음수 그대로 전환)
import java.util.*; class Solution { public int solution(int n) { int answer = 0; for(int i=1; i
import java.util.*; class Solution { public int[] solution(int[] arr) { int[] answer = {}; int minNum = arr[0]; for(int i=1; i
import java.util.*; class Solution { public String solution(String s) { String answer = ""; char[] temp = s.toCharArray(); Arrays.sort(temp); for(int i=temp.length-1; i>=0; i--){ answer += Character.toString(temp[i]); } return answer; } } 1. 문자열 내용을 정렬하기 위해 char형 배열로 만든후 정렬한다. 2. 작은순으로 이므로 맨 마지막인덱스 부터 시작하여 0 까지 돌면서 해당값을 answer에 더해준다. import java.util.*; class Solution { public String solution(St..
class Solution { public String solution(int a, int b) { String answer = ""; int howDay =0; String[] DAY = {"THU","FRI","SAT","SUN","MON","TUE","WED"}; int[] arr = {0,31,29,31,30,31,30,31,31,30,31,30,31}; for(int i=0; i
import java.util.*; public class Solution { public int[] solution(int []arr) { int[] answer = {}; List answerList = new ArrayList(); answerList.add(arr[0]); for(int i=1; i