목록알고리즘 (7)
today_is
https://school.programmers.co.kr/learn/courses/30/lessons/12906 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 코드 import java.util.*;public class Solution { public int[] solution(int []arr) { int[] answer = {}; ArrayList list = new ArrayList(); int check = -1; // 배열은 0 ~ 9로 구성되어있기 때문 ..
https://softeer.ai/practice/7374 Softeer - 현대자동차그룹 SW인재확보플랫폼 softeer.ai 코드import java.io.*;import java.util.*;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int arr[][] = new int[3][3]; int cost = 1000; for(int i=0; i 한 줄씩 해석 Scanner 객체를 생성한다 int로 2차원 배열을 3 * 3으로 생성 우선, cost는 터무니 없이 큰 값으로 초기화 시켜준다 (나중에 co..

https://school.programmers.co.kr/learn/courses/30/lessons/42746 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 무슨 기준으로 점수를 많이 주는건지 모르겠다. 코드import java.util.*;class Solution { public String solution(int[] numbers) { String[] newArr = new String[numbers.length]; for(int i=0; i (b + a).compareTo(a + ..

https://school.programmers.co.kr/learn/courses/30/lessons/42748 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 코드import java.util.*;class Solution { public int[] solution(int[] array, int[][] commands) { int[] answer = new int[commands.length]; for(int i=0; i 오류발생 ArrayIndexOutOfBoundsException 예외발생 로직은 이..

https://school.programmers.co.kr/learn/courses/30/lessons/42576 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 작성한 코드import java.util.*;class Solution { public String solution(String[] participant, String[] completion) { String answer = ""; HashMap map = new HashMap(); for(String p : participa..

작성한 코드 import java.util.*;class Solution { public boolean solution(String[] phone_book) { boolean answer = true; HashMap map = new HashMap(); for(String str : phone_book) { map.put(str, 1); } for(String str : phone_book) { for(int i=1; i 한줄씩 해석해보기 answer는 true로 초기화 HashMap은 key(String) , value(Integer) 형태로 만든다..

오늘의 목표 웹 페이지 하단에 나오는 게시글 개수에 따른 페이지를 출력해보자. 공부하는 이유 웹을 구현하기 위해서는 다양한 기능을 알고 있어야 한다. 특히나, 페이지를 출력하는 코드는 기초 중에서도 아주 기초에 속하기 때문에 기본기부터 다져보자 step 0 구현하고자 하는 부분을 파악하기 랜덤값으로 전체 게시글의 개수를 생성하여 1페이지당 10개의 게시글이 나오게 출력한다. 또한 랜덤값으로 "요청 페이지"를 생성하여 요청페이지에서의 시작 페이지와 끝 페이지를 출력한다. ex) 전체 페이지 : 9 페이지 요청 페이지 : 3 페이지 출력값 >> 페이지 시작번호 : 31 페이지 끝 번호 : 40 (41번부터는 4페이지이기 때문) step 1 Random() 생성 Random ran = new Random();..