728x90
[프로그래머스] 배달
·
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..
플로이드 와샬 알고리즘
·
2022 하계방학 코테 특강/Graph, Tree 알고리즘
보호되어 있는 글입니다.
다익스트라 알고리즘
·
2022 하계방학 코테 특강/Graph, Tree 알고리즘
보호되어 있는 글입니다.
[LeetCode] 102. Binary Tree Level Order Traversal
·
🚩 코딩테스트/알고리즘
문제 https://leetcode.com/problems/binary-tree-level-order-traversal/ Binary Tree Level Order Traversal - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 풀이 BFS를 사용해 문제 풀이를 하였다. 같은 깊이의 node들의 val 값을 임시 리스트에 저장하고 이를 결과 리스트에 추가하였다. 코드 from collections import deque # Definition for a bi..
[프로그래머스] 소수 찾기
·
🚩 코딩테스트/알고리즘
문제 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 = ..
728x90
딩딩크롱
딩딩크롱의 블로그