문제링크 Remove Duplicates from Sorted Array II - LeetCode Can you solve this real interview question? Remove Duplicates from Sorted Array II - Given an integer array nums sorted in non-decreasing order, remove some duplicates in-place [https://en.wikipedia.org/wiki/In-place_algorithm] such that each unique elemen leetcode.com 음..일단 nums를 for문으로 돌려서 각 요소의 개수를 세서 2보다 크면 해당 요소 중 가장 뒤에 있는 인덱스에서 빠지도록 po..
문제링크 Remove Duplicates from Sorted Array - LeetCode Can you solve this real interview question? Remove Duplicates from Sorted Array - Given an integer array nums sorted in non-decreasing order, remove the duplicates in-place [https://en.wikipedia.org/wiki/In-place_algorithm] such that each unique element ap leetcode.com 중복을 제거하는 일이군 set 함수를 사용해야겠어 class Solution: def removeDuplicates(self, nums:..
문제링크 Remove Element - LeetCode Can you solve this real interview question? Remove Element - Given an integer array nums and an integer val, remove all occurrences of val in nums in-place [https://en.wikipedia.org/wiki/In-place_algorithm]. The order of the elements may be changed. Then r leetcode.com 흠...이것도 인덱스 놀이인가? 근데 일단 내 방법대로 풀면 nums를 맨 뒤 인덱스부터 순환해서 val과 같은 요소가 있으면 remove 하고 for문이 다 돌면 변수 k에..
- 도커 강의 수강 전에 다 못 들은 부분을 다 듣기는 했는데 정리를 못 했다 한 번 쭉 듣고 실습하면서 정리할 예정..!!(이번 주 과제 다 하면!!) - 알고리즘 문제 풀이 이제 프로그래머스가 아닌 릿코드에서 문제를 푼다 문제가 영어로 돼있어서 문제를 이해하는 것부터 난관이다... https://guco.tistory.com/328 [코테] Merge Sorted Array 문제 링크 Merge Sorted Array - LeetCode Can you solve this real interview question? Merge Sorted Array - You are given two integer arrays nums1 and nums2, sorted in non-decreasing order, an..
문제 링크 Merge Sorted Array - LeetCode Can you solve this real interview question? Merge Sorted Array - You are given two integer arrays nums1 and nums2, sorted in non-decreasing order, and two integers m and n, representing the number of elements in nums1 and nums2 respectively. Merge nums1 an leetcode.com leetcode는 문제를 해석하는 것부터가 일이구나...! 일단 nums1과 nums2를 extend 한 다음, 0을 삭제하고 .sort() 하면 될 것 같다 cla..