알고리즘/LeetCode29 [알고리즘] LeetCode - Majority Element Majority Element - LeetCode Can you solve this real interview question? Majority Element - Given an array nums of size n, return the majority element. The majority element is the element that appears more than ⌊n / 2⌋ times. You may assume that the majority element always exists leetcode.com 문제 설명 정수형 배열 nums가 주어진다. nums 배열의 수 중에서 주된 요소 (매번 n/2보다 큰 갯수를 가진 수)를 반환해야 한다. 문제 해결 반복문을 돌면서 count Map에 수.. 2023. 8. 24. [알고리즘] LeetCode - Remove Duplicates from Sorted Array II 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가 오름차순 정렬되어 주어진다. 배열의 각 요소가 최대 두 번 나타나도록 일부 중복 항목을 제거한다. nums.. 2023. 8. 24. [알고리즘] LeetCode - Remove Duplicates from Sorted Array 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 문제 설명 정수형 배열 nums가 오름차순으로 정렬되어 주어진다. nums 배열에서 중복을 제거한 배열의 크기를 반환해야 한다. nums 배열에서.. 2023. 8. 23. [알고리즘] LeetCode - Remove Element 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이 주어진다. nums안의 수 중 val과 일치하지 않는 수를 nums배열의 앞에서부터 차례대로 저장해야 한다. nums.. 2023. 8. 23. 이전 1 ··· 3 4 5 6 다음