목록자바 (5)
drexqq
for문 public String solution(String[] participant, String[] completion) { String answer = ""; Arrays.sort(participant); Arrays.sort(completion); int i =0; //a for(i =0; i
import java.util.Arrays; class Solution { public int[] solution(int[] array, int[][] commands) { int[] answer = {}; answer = new int[commands.length]; for (int i = 0; i < commands.length; i++) { int[] temp = new int[commands[i][1]-commands[i][0]+1]; int index = 0; for (int j = commands[i][0]-1; j < commands[i][1]; j++) { temp[index] = array[j]; index++; } Arrays.sort(temp); answer[i] = temp[comm..
class Solution { public int solution(int[][] board, int[] moves) { int answer = 0; Stack basket = new Stack(); for (int i = 0; i < moves.length; i++) { for (int j = 0; j < board.length; j++) { if (board[j][moves[i]-1] != 0) { if (basket.isEmpty()) { basket.push(board[j][moves[i]-1]); } else { if (basket.peek() == board[j][moves[i]-1]) { basket.pop(); answer += 2; } else { basket.push(board[j][mo..
Eclipse 설치하는 방법을 알아보자 https://www.eclipse.org/downloads/packages/release/2020-03/r/eclipse-ide-enterprise-java-developers-includes-incubating-components Eclipse Packages | The Eclipse Foundation - home to a global community, the Eclipse IDE, Jakarta EE and over 350 open source pro 442 MB 4,330 DOWNLOADS The Modeling package provides tools and runtimes for building model-based applications. You c..
Java SE 8 버전 다운로드하는 방법을 알아보자 https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html 위의 주소로 들어가서 자신의 OS에 맞는 버전을 다운로드한다. 다운로드한 설치 실행 파일을 실행시키고 나면 자바를 설치할 폴더를 선택하게 되는데 이때 한글경로나 빈칸 경로는 되도록이면 사용하지 않도록 하자 설치가 완료된 뒤에 자바 환경변수를 설정해줘야 하는데 그 이유는 cmd창에서 java의 명령어를 사용할 때 자바가 설치되어 있는 디렉터리로 이동하지 않고 사용하기 위함이다. 환경변수 설정 방법은 내 컴퓨터(내 PC) 우클릭 후 속성 클릭 고급 시스템 설정 클릭 고급 탭 우측 하단 환경변수 클릭 시스템 변수라 적힌 아래 ..