728x90
사다리 타기
·
2022 동계방학 코테 특강/시뮬레이션
보호되어 있는 글입니다.
[프로그래머스] 가장 먼 노드
·
2022 하계방학 코테 특강/Graph, Tree 알고리즘
문제 https://school.programmers.co.kr/learn/courses/30/lessons/49189 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 코드 자바 import java.util.*; class Edge implements Comparable { public int vex; public int cost; public Edge(int vex, int cost) { this.vex = vex; this.cost = cost; } @Override public int compareTo(Edge ob) { return this.cos..
[프로그래머스] 배달
·
2022 하계방학 코테 특강/Graph, Tree 알고리즘
문제 https://school.programmers.co.kr/learn/courses/30/lessons/12978 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 코드 자바 import java.util.*; class Edge implements Comparable { public int vex; public int cost; public Edge(int vex, int cost) { this.vex = vex; this.cost = cost; } @Override public int compareTo(Edge ob) { return this.cos..
[프로그래머스] 소수 찾기
·
🚩 코딩테스트/알고리즘
문제 https://school.programmers.co.kr/learn/courses/30/lessons/42839 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 문자들의 조합을 구해 정수형으로 변환 후 소수인지 아닌지를 판별한다. 코드 자바 import java.util.*; class Solution { int[] check; Stack stack = new Stack(); ArrayList results = new ArrayList(); public boolean isPrimeNumber(int n) { if (n < 2) return fa..
[프로그래머스] 모의고사
·
🚩 코딩테스트/알고리즘
문제 https://school.programmers.co.kr/learn/courses/30/lessons/86491 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 코드 자바 import java.util.*; class Solution { public int[] solution(int[] answers) { int[][] nums = { { 1, 2, 3, 4, 5 }, { 2, 1, 2, 3, 2, 4, 2, 5 }, { 3, 3, 1, 1, 2, 2, 4, 4, 5, 5 } }; int[] n = { 5, 8, 10 }; int[] count = ..
[프로그래머스] 최소직사각형
·
🚩 코딩테스트/알고리즘
문제 https://school.programmers.co.kr/learn/courses/30/lessons/86491 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 코드 자바 import java.util.*; class Solution { public int solution(int[][] sizes) { int w = 0; int h = 0; for (int[] size : sizes) { Arrays.sort(size); w = Math.max(w, size[0]); h = Math.max(h, size[1]); } return w * h; } } ..
728x90
딩딩크롱
'java' 태그의 글 목록 (10 Page)