Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- 리팩토링
- 리액트
- 자바스크립트
- Node.js
- 백준13549번js
- CS
- 웹
- 백준13549번
- 파이프라인
- 깃
- 데이터베이스
- 브랜치
- 오픈소스
- gui
- 타입스크립트
- js
- 객체
- 좋아요추가
- 컴퓨터공학
- post
- 프로그래머스
- 예외처리
- API
- 백준18111번
- 깃허브
- 자바
- 변수
- Express
- npm
- 백준18111번js
Archives
- Today
- Total
목록프로그래머스모의고사자바 (1)
Nevertheless

import java.util.*;class Solution { public ArrayList solution(int[] answers) { int student_1[]={1,2,3,4,5}; int student_2[]={2,1,2,3,2,4,2,5}; int student_3[]={3,3,1,1,2,2,4,4,5,5}; int score[]=new int[3]; //점수를 저장하는 배열 for(int i=0;i list=new ArrayList(); for(int i=0;i ✏️ 풀이 방법 1. 1번, 2번, 3번 학생이 찍는 방식을 각각의 배열에 저장한다. 2. answers 배열을 돌면서 ..
코딩테스트/Programmers
2024. 5. 1. 23:59