Algorithm

Algorithm

DPS, 완전 탐색으로 섬 개수와 섬을 둘러싼 둘레 구하기

import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class Sum { public static void main(String[] args) { System.out.println(solution(new int[][]{{1, 0, 1, 0}, {0, 0, 0, 1}, {0, 0, 0, 1}, {0, 0, 1, 1}})); // 3 System.out.println(solution2(new int[][]{{1, 0, 1, 0}, {0, 0, 0, 1}, {0, 0, 0, 1}, {0, 0, 1, 1}})); // 18 } // 둘레 구하기 private static int solution2(int[][] isl..

Algorithm

2020 프로그래머스 Dev-Matching 앱 개발자 후기

https://programmers.co.kr/competitions/94/2019-app-jobfair 프로그래머스 2019 앱 개발자 온라인 잡페어 2019년 모바일 앱 개발자 대규모 채용 프로젝트 프로그래머스가 주최하는 2019 앱 개발자 온라인 잡페어는 앱개발자와 기업을 연결시켜주는 온라인 채용박람회입니다. 기존 채용박람회처럼 오프� programmers.co.kr 작년에 봤던 기억이 있어, 이번년에는 난이도가 어느정도일까 궁금하여, 알고리즘 테스트를 진행했다. 알고리즘 문제는, 회사의 소중한 자산이기 때문에 자세하게 밝힐 수 없다. 전체적으로 작년보다 난이도가 조금(?) 올랐다는 느낌이 들었다. 1번 문제는 그래프 문제였는데, 어떤 자료구조가 최적일지 생각하는데 시간이 조금 걸렸다. 주어진 테스..

Algorithm

프로그래머스 Dev-Matching 앱 개발자(4) - 후기

보호되어 있는 글입니다.

Algorithm

프로그래머스 Dev-Matching 앱 개발자(3) - 후기

보호되어 있는 글입니다.

Algorithm

프로그래머스 Dev-Matching 앱 개발자(2) - 후기

보호되어 있는 글입니다.

Algorithm

프로그래머스 Dev-Matching 앱 개발자(1) - 후기

보호되어 있는 글입니다.

Algorithm

기능개발 LV2

https://programmers.co.kr/learn/courses/30/lessons/42586 코딩테스트 연습 - 기능개발 프로그래머스 팀에서는 기능 개선 작업을 수행 중입니다. 각 기능은 진도가 100%일 때 서비스에 반영할 수 있습니다. 또, 각 기능의 개발속도는 모두 다르기 때문에 뒤에 있는 기능이 앞에 있는 �� programmers.co.kr import java.util.Arrays; import java.util.Stack; class Solution { public static int[] solution(int[] progresses, int[] speeds) { int[] answer = new int[progresses.length - 1]; Stack stack = new St..

Algorithm

안드로이드 간단 알고리즘

소수 판별 TEST public class PrimeNumberTest { @Test public void 구현테스트1() { System.out.println(checkPrimeNumber(new int[]{29})); Assert.assertTrue(checkPrimeNumber(new int[]{29})); } @Test public void 구현테스트2() { System.out.println(checkPrimeNumber(new int[]{79})); Assert.assertTrue(checkPrimeNumber(new int[]{79})); } @Test public void 구현테스트3() { System.out.println(checkPrimeNumber(new int[]{89})); As..

Algorithm

프린터 LV2

https://programmers.co.kr/learn/courses/30/lessons/42587 코딩테스트 연습 - 프린터 일반적인 프린터는 인쇄 요청이 들어온 순서대로 인쇄합니다. 그렇기 때문에 중요한 문서가 나중에 인쇄될 수 있습니다. 이런 문제를 보완하기 위해 중요도가 높은 문서를 먼저 인쇄하는 프린�� programmers.co.kr import java.util.ArrayList; import java.util.Iterator; import java.util.List; public class Programmers { public static void main(String[] args) { System.out.println(solution(new int[]{2, 1, 3, 2}, 2)); S..

Nanamare
'Algorithm' 카테고리의 글 목록