[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.
[Leetcode(릿코드)] 969. Pancake Sorting (Medium)
leetcode.com/problems/pancake-sorting/ Pancake Sorting - 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 문제 정렬되지 않은 배열 arr[]이 주어진다 그리고 그 배열을 1~arr.length-1개를 골라서 뒤집을 수 있다 뒤집기를 반복하여 배열을 순차적으로 정렬하는 문제이다 예를들어 arr[] = {3,2,4,1}이 주어지면, 1. 먼저 앞에꺼 3개를 뒤집는다 {3,2,4} -> {4,2,3}, 그러면 {4,2,3,1..
2020. 11. 8.