Algorithm/Programers - Java (160) 썸네일형 리스트형 [프로그래머스(Java)] 행렬의 덧셈 Level. 1 문제 풀이 class Solution { public int[][] solution(int[][] arr1, int[][] arr2) { int row = arr1.length; int cell = arr1[0].length; int[][] answer = new int[row][cell]; for(int i=0; i [프로그래머스(Java)] 소수 만들기 Level. 1 문제 풀이 import java.lang.Math; class Solution { public boolean sosu(int num){ for(int i=2; i [프로그래머스(Java)] 소수찾기 Level. 1 문제 1부터 입력받은 숫자 n 사이에 있는 소수의 개수를 반환하는 함수, solution을 만들어 보세요. 풀이 class Solution { public int sosu(int n){ int count = 0; boolean flag ; for(int i=2; i [프로그래머스(Java)] 문자열 다루기 기본 / isDigit(), parseInt() Level.1 문제 문자열 s의 길이가 4 혹은 6이고, 숫자로만 구성돼 있는지 확인해 주는 함수, solution을 완성하세요. 예를 들어 s가 "a234"이면 False를 리턴하고 "1234"라면 True를 리턴하면 됩니다. 풀이 class Solution { public boolean solution(String s) { if( s.length() != 4 && s.length() != 6) return false; for(int i=0; i parseByte() / parseShort() / parseInt() / parseLong() / parseFloat() / parseDouble() https://school.programmers.co.kr/learn/courses/30/lessons/12.. [프로그래머스(Java)] 약수의 합 Level. 1 문제 정수 n을 입력받아 n의 약수를 모두 더한 값을 리턴하는 함수, solution을 완성해 주세요. 풀이 class Solution { public int solution(int n) { int answer = 0; int min = n; if(n==1) return 1; for(int i=1; i [프로그래머스] 자연수 뒤집어 배열로 만들기 / valueOf,() toString() Level. 1 문제 풀이 class Solution { public int[] solution(long n) { String str= String.valueOf(n); //String str = Long.toString(n); int[] answer = new int[str.length()]; int index = 0; while(n>0){ answer[index++] = (int)(n%10); n /= 10; } return answer; } } String.valueOf(), toString() String.valueOf(), toString() 은 Object 값을 String 형으로 변환할 때 주로 사용하는 메서드이다. String.valueOf(), toString() 등을 이용하면 숫자를 문.. [프로그래머스] 제일 작은 수 제거하기 / Stream Level. 1 문제 풀이 class Solution { public int[] solution(int[] arr) { if(arr.length == 1){ int[] answer = {-1}; return answer; } int[] answer = new int[arr.length-1]; int minIdx=0; for(int i=1; iarr[i]) minIdx = i; } for(int i=0;i [프로그래머스] 문자열 내 p와 y의 개수 / Stream , chars() , filter() Level. 1 문제 풀이 class Solution { boolean solution(String s) { s = s.toLowerCase(); boolean answer = true; int count = 0; for(int i=0; i 'P'== e).count() == s.chars().filter( e -> 'Y'== e).count(); } } Java의 기본 문자 어레이를 chars()를 통해 스트림으로 변환하고, filter()를 통해 원하는 자료만 필터링하여 한줄코드로 해결했다. chars() chars()는 CharSequence 인터페이스로부터 파생한 String 클래스의 새로운 메서드이다. chars()는 기본적으로 IntStream을 반환하여, 문자어레이를 스트림으로 만들 때 사용.. 이전 1 ··· 16 17 18 19 20 다음