[Leetcode(릿코드)] 21. Merge Two Sorted Lists (Easy)
leetcode.com/problems/merge-two-sorted-lists/ Merge Two Sorted Lists - 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 문제 ListNode 인스턴스 2개를 받아서, 값이 작은거부터 하나씩 추가하여 정렬하여 ListNode를 반환하는 문제이다 예를 들어 l1 = [1,2,4], l2 = [1,3,4]가 주어지면 [1,1,2,3,4,4]로 리턴하면 된다 여기서 ListNode 형태는 아래처럼 주어진다 publi..
2020. 11. 25.
[Leetcode(릿코드)] 70. Climbing Stairs (Easy)
leetcode.com/problems/climbing-stairs/ Climbing Stairs - 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 문제 n이라는 숫자가 주어진다 그리고 이 숫자까지 올라갈 수 있는 경우의 수를 출력하는 문제이다 점프할 수 있는 수는 1과 2이다 예를 들어, n=1, [1] (1개) n=2, [1+1, 2] (2개) n=3, [1+1+1, 1+2, 2+1] (3개) n=4, [1+1+1+1, 1+2+1, 2+1+1, 1+1+2, ..
2020. 11. 18.
[프로그래머스] 배달 (Level 3)
programmers.co.kr/learn/courses/30/lessons/12978 코딩테스트 연습 - 배달 5 [[1,2,1],[2,3,3],[5,2,2],[1,4,2],[5,3,1],[5,4,2]] 3 4 6 [[1,2,1],[1,3,2],[2,3,2],[3,4,3],[3,5,2],[3,5,3],[5,6,1]] 4 4 programmers.co.kr 문제 도로의 정보(2차원배열), N(노드의 개수), K(거리)가 주어진다 도로의 정보에는 각 노드-노드 (거리)의 정보가 들어있다 N=5이면 1,2,3,4,5라는 도시가 있고 도로의 정보가 [[1,2,1],[2,3,3],[5,2,2],[1,4,2],[5,3,1],[5,4,2]]이면, 1-2도시의 거리는 1, 2-3도시의 거리는 3.. 이다 문제는 다음..
2020. 11. 18.