728x90

리스트 22

[leetCode] 2176. Count Equal and Divisible Pairs in an Array (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/count-equal-and-divisible-pairs-in-an-array/ Count Equal and Divisible Pairs in an Array - 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 정수 배열 nums와 정수 k가 주어진다. (i , j) 로 2개씩 짝지어 만드는 조합 중 i == j 이고, i의 인덱스 j의 인덱스의 곱한 값을 k로 나누었을 때 나머지..

[leetCode] 1913. Maximum Product Difference Between Two Pairs (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/maximum-product-difference-between-two-pairs/ Maximum Product Difference Between Two Pairs - 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 주어진 리스트 nums에서 최대값 쌍과 최소값 쌍을 고르고 (a * b) - (c * d) 로 연산한 값을 반환하는 문제 (각 쌍을 서로 곱한 후 빼기) class So..

[leetCode] 1323. Maximum 69 Number (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/maximum-69-number/ Maximum 69 Number - 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 양의 정수 num이 주어진다. num은 6과 9로만 이루어져있다. 딱 1번, 한 자리의 수를 6에서 9로 바꿀 수 있을 때, 최댓값을 정수로 반환하는 문제. for j in range(len(num)): if num[j] == "6": num[j] = "9" bre..

[leetCode] 1662. Check If Two String Arrays are Equivalent (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/check-if-two-string-arrays-are-equivalent/ Check If Two String Arrays are Equivalent - 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 1개 이상의 문자열이 들어있는 리스트 2개가 주어진다. 각 리스트의 원소를 전부 문자열 형태로 붙여 합쳤을 때 두 리스트의 값이 같으면 True를 다르면 False를 반환하는 문제..

[leetCode] 645. Set Mismatch (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/set-mismatch/ Set Mismatch - 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 1부터 n까지 순서대로 증가하는 정수를 *모두 담은 집합이 배열로 주어진다. (n부터 1까지 감소하는 리스트 포함) 오류로 중복된 숫자와, 원래 숫자를 리스트로 반환하는 문제. class Solution: def findErrorNums(self, nums: List[int]) ->..

[leetCode] 2006. Count Number of Pairs With Absolute Difference K (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/count-number-of-pairs-with-absolute-difference-k/ Count Number of Pairs With Absolute Difference K - 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 정수 배열 nums와 정수 k가 주어진다. nums에서 (i,j) 형태로 조합했을 때, 절대값이 k인 경우의 수를 반환하는 문제. from itertool..

[leetCode] 2418. Sort the People (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/sort-the-people/ Sort the People - 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 길이가 같은 두 리스트 names, heights가 주어진다. names[i] 의 키는 heights[i] 다. 키가 큰 순서대로 정렬해서 이름만 리스트로 반환하는 문제. class Solution: def sortPeople(self, names: List[str], h..

[leetCode] 1791. Find Center of Star Graph (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/find-center-of-star-graph/ Find Center of Star Graph - 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 모든 값과 연결되어있는 중앙 노드를 찾고 그 값을 반환하는 문제. 리스트 안에 하위 리스트가 존재하며 하위리스트는 2개의 값을 가진다. class Solution: def findCenter(self, edges: List[List[in..

[leetCode] 1389. Create Target Array in the Given Order (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/create-target-array-in-the-given-order/ Create Target Array in the Given Order - 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 길이가 같은 두 리스트 index, nums가 주어진다. 빈 리스트 target을 만든 후, index 요소를 인덱스 번호로 nums 요소를 값으로 넣는다. 요소를 추가할 때, 이미 그 인덱..

[leetCode] 1365. How Many Numbers Are Smaller Than the Current Number (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/how-many-numbers-are-smaller-than-the-current-number/ How Many Numbers Are Smaller Than the Current Number - 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 리스트 nums가 주어진다. 0번째부터 마지막 요소까지 각 요소보다 작은 수가 배열 내에 몇 개 있는 지를 배열로 반환하는 문제. class..

728x90