class Solution { public int[] solution(int[] num_list, int n) { // answer 배열 길이 먼저 구하기 int leng = 0; if(num_list.length % n == 0 ) { leng = num_list.length / n; } else { leng = num_list.length / n + 1; } int[] answer = new int[leng]; int idx = 0; for(int i = 0 ; i < num_list.length; i++) { if ( idx < num_list.length) { answer[i] = num_list[idx]; idx += n; } } return answer; } } class Solution { ..
class Solution { public int[] solution(int n) { int[] answer = new int [n / 2 + n % 2]; int cnt = 0; for(int i = 1; i
import java.util.Arrays; import java.util.stream.IntStream; public class Stream03 { public static void main(String[] args) { /* 배열에서 짝수만 출력(정렬) * */ int arr[] = {5, 6, 1, 2, 4, 7, 8, 9, 3, 2, 4, 7, 8}; System.out.println("배열에서 짝수만 출력(정렬)"); Arrays.stream(arr) .filter(n-> n % 2 == 0) .sorted()//정렬 .forEach(a-> System.out.printf(a+" ")); System.out.println(); System.out.println("------------------..
5개의 값을 가지는 배열을 생성하고 1~50사이의 랜덤값을 저장한 후 출력 public class Array06 { public static void main(String[] args) { int arr[] = new int[] { 4, 37, 23, 9, 43 }; for (int i = 0; i arr[j]) { //오름차순 //교환 int tmp = arr[i]; arr[i] = arr[j]; arr[j] = tmp; } } } for(int tmp : arr ) { System.out.print(tmp+" "); } ..
파일명 5개가 주어졌을 때, 원하는 단어를 입력하면 입력한 단어가 있는 파일들을 출력 import java.util.Scanner; public class 파일찾기 { public static void main(String[] args) { /* 파일명 5개가 주어졌을 때, * 원하는 단어를 입력하면 * 입력한 단어가 있는 파일들을 출력하도록 코드를 작성 * */ //주어진 파일명 5개 String[] fileName = {"java의 정석.txt","이것이 java다.jpg" ,"String메서드.txt","String함수.jpg","java의 함수.png"}; Scanner sc = new Scanner(System.in); System.out.print("검색> "); String str = sc...