https://leetcode.com/problems/remove-element/?envType=study-plan-v2&envId=top-interview-150 문제 정리 배열에서 제시된 수와 같은 값을 가지는 원소를 제거하여 총 몇개의 원소가 남았는지를 구하는 문제입니다. 몇가지를 주의해야 합니다. 제거된 배열의 크기는 원래 nums의 크기와 같다....
문제 https://leetcode.com/problems/merge-sorted-array/submissions/?envType=study-plan-v2&envId=top-interview-150 > You are given two integer arrays nums1 and nums2, sorted in non-decreasing order, and t...
https://leetcode.com/problems/remove-duplicates-from-sorted-array/?envType=study-plan-v2&envId=top-interview-150 문제 정리 비 내림차순으로 정렬된 배열의 중복을 제거하는 문제입니다. 최종적으로는 총 원소의 개수를 반환하면 됩니다. 풀이 1차 아이디어 배열을 순회하...
https://leetcode.com/problems/remove-duplicates-from-sorted-array-ii/ 문제정리 Remove Duplicates from Sorted Array I과 메커니즘은 동일하지만 중복을 1회 허용하는 문제입니다. {1, 1, 1, 2, 3, 3, 3, 3}이 있다면 결과는 {1, 1, 2, 3, 3}이 됩니다...
https://leetcode.com/problems/valid-palindrome/?envType=study-plan-v2&envId=top-interview-150 문제 정리 Palindrome을 찾는 문제다. > Palindrome : 거꾸로 읽어도 동일한 단어를 말함. 토마토가 대표적인 예시다. 풀이 몇 가지 프로세스를 진행해야 한다. 공백이나,...