728x90 반응형 알고리즘 문제풀이146 프로그래머스 - 공 던지기 class Solution { public int solution(int[] numbers, int k) { int answer = 0; int count = 0; for(int i=0; i=numbers.length){ count = count-numbers.length; } answer=numbers[count]; } return answer; } } 2023. 3. 17. 프로그래머스 - 7의 개수 class Solution { public int solution(int[] array) { int answer = 0; String str = ""; for(int a : array){ str += String.valueOf(a); } String[] args = str.split(""); for(String a: args){ if(a.equals("7")){ answer++; } } return answer; } } 2023. 3. 17. 프로그래머스 - 숨어있는 숫자의 덧셈 (2) class Solution { public int solution(String my_string) { int answer = 0; String[] ars = my_string.split(""); for(int i=0; i 2023. 3. 17. 프로그래머스 - 한 번만 등장한 문자 import java.util.*; class Solution { public String solution(String s) { String[] ars = s.split(""); String answer = ""; String str = ""; for(int i=0;i 2023. 3. 17. 이전 1 ··· 17 18 19 20 21 22 23 ··· 37 다음 728x90 반응형