728x90 반응형 분류 전체보기273 프로그래머스 - 나머지가 1이 되는 수 찾기 class Solution { public int solution(int n) { int answer = 0; for(int i=1; i 2023. 3. 25. 프로그래머스 - 문자열 내 p와 y의 개수 class Solution { boolean solution(String s) { boolean answer = true; s = s.toUpperCase(); String[] ars = s.split(""); int countP = 0; int countY = 0; for(String a : ars){ if(a.equals("P")){ countP++; } else if(a.equals("Y")){ countY++; } } if(countP!=countY){ answer=false; } return answer; } } 2023. 3. 25. 프로그래머스 - 정수 제곱근 판별 class Solution { public long solution(long n) { long answer = 0; long num = (long)Math.sqrt(n); if(num*num!=n){ return -1; } answer = (num+1) * (num+1); return answer; } } 2023. 3. 25. 프로그래머스 - 자연수 뒤집어 배열로 만들기 class Solution { public int[] solution(long n) { String[] num = String.valueOf(n).split(""); int[] answer = new int[num.length]; for(int i=0; i 2023. 3. 25. 이전 1 ··· 18 19 20 21 22 23 24 ··· 69 다음 728x90 반응형