[알고리즘] LeetCode 1번 "Two Sum" (C/C++) - Don 임베디드
문제요약: Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. 제약: Each input would have exactly one solution. You cannot use the same element twice. Answer can be in any order. 예제 1 입력. 예제 1 출력. nums = [2,7,11,15], target = 9 [0,1] 예제 2 입력. 예제 2 출력. nums = [3,2,4], target = 6 [1,2] 예제 3 입력. 예제 3 출력. nums = [3,3], target = 6 [0,1] ..
[알고리즘] LeetCode 21번 "Merge Two Sorted Lists" (C/C++) - Don 임베디드
문제요약: Given two heads of sorted linked lists list1 and list2, merge two lists into one sorted linked list and return the head of the merged list. 제약: -100 < Node.val < 100 lists are sorted in non-decreasing order 예제 1 입력. 예제 1 출력. [1,2,4] [1,3,4] [1,1,2,3,4,4] 예제 2 입력. 예제 2 출력. [5] [1,3,4] [1,3,4,5] 정답코드1 (while문 사용): 비교적 복잡하고, 신경써줘야 하는 곳이 많음. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2..