본문 바로가기

Programmers/Level1

(66)
음양 더하기 1 2 3 4 5 6 7 8 class Solution { public int solution(int[] absolutes, boolean[] signs) { int answer = 0; for (int i = 0; i
내적 1 2 3 4 5 6 7 8 class Solution { public int solution(int[] a, int[] b) { int answer = 0; for (int i = 0; i
서울에서 김서방 찾기 1 2 3 4 5 6 7 8 9 10 class Solution { public String solution(String[] seoul) { for (int i = 0; i
가운데 글자 가져오기 1 2 3 4 5 6 7 8 9 10 11 class Solution { public String solution(String s) { String answer = ""; int len = s.length(), mid = len / 2; if (len % 2 == 0) answer = s.substring(mid - 1, mid + 1); else answer = s.substring(mid, mid + 1); return answer; } } Colored by Color Scripter cs
2016년 1 2 3 4 5 6 7 8 9 10 11 12 13 14 import java.text.ParseException; import java.util.Calendar; class Solution { public String solution(int a, int b) throws ParseException{ String answer = ""; Calendar cal = Calendar.getInstance(); cal.set(2016, a - 1, b); String[] day = { "SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT" }; answer = day[cal.get(Calendar.DAY_OF_WEEK) - 1]; return answer; } } Colored ..
[1차] 다트 게임 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 import java.util.HashMap; import java.util.Map; class Solution { public int solution(String dartResult) { int answer = 0; int i, j, e = 1, num = 0, res = 0, tmp = 0; Map map = new HashMap(); map.put("S", 1); map.put("D", 2); map.put("T", 3); map.put("*", 2); map.put..
문자열 내 p와 y의 개수 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 class Solution { boolean solution(String s) { boolean answer = true; int pCnt = 0, yCnt = 0; s = s.toLowerCase(); for (int i = 0; i
로또의 최고 순위와 최저 순위 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 import java.util.stream.IntStream; class Solution { public int[] solution(int[] lottos, int[] win_nums) { int[] answer = { 7, 7 }; for (int i = 0; i x == lotto)){ answer[0]--; answer[1]--; } } if (answer[0] == 7) answer[0] = 6; if (answer[1] == 7) answer[1] = 6; return answer; } } Colored by Color Scripter cs 배열에서 값 포함여부를 알기 위한 IntStream.of(a..