프로그래머스26 [프로그래머스] 콜라츠 추측 import java.util.*; class Solution { public int solution(int num) { int answer = 0; int cnt = 0; if(num ==1){ return answer; } while(cnt 2022. 12. 1. [프로그래머스] 나머지가 1이 되는 수 찾기 class Solution { public int solution(int n) { int answer = 0; for(int i=2; i 2022. 12. 1. [프로그래머스] 없는 숫자 더하기 class Solution { public int solution(int[] numbers) { int answer = -1; int allSum = 0; int numSum =0; for(int i=0; i 2022. 12. 1. [프로그래머스] 문자열 다루기 기본 처음 코드는 이랬다. isNumeric 메서드에서 인자로 들어온 s를 실수로 파싱하고, 파싱이 잘되면 true, 파싱이 안되면 false를 리턴한다. 그리고 리턴값을 가지고 문자열인지 아닌지 판단한다. class Solution { public static boolean isNumeric(String s) { try { Double.parseDouble(s); return true; } catch (NumberFormatException e) { return false; } } public boolean solution(String s) { boolean answer = true; if(isNumeric(s)){ if(s.length()==4||s.length()==6){ answer = true; }e.. 2022. 12. 1. 이전 1 2 3 4 5 ··· 7 다음