728x90

코딩 테스트/leetCode 46

[leetCode] 1827. Minimum Operations to Make the Array Increasing (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/minimum-operations-to-make-the-array-increasing/ Minimum Operations to Make the Array Increasing - 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개 이상의 정수를 가지는 정수 배열 nums가 주어진다. 값이 증가하는 배열을 만드려고 할 때, (무조건 이전 인덱스보다 커야 함) 각 요소를 한 번에 하나..

[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] 709. To Lower Case (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/to-lower-case/ To Lower Case - 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 문자열 s가 주어진다. 대문자가 있다면 모두 소문자로 바꾸어 반환하는 문제. class Solution: def toLowerCase(self, s: str) -> str: answer = "" for i in s: if i.isupper(): answer += i.lower()..

[leetCode] 1816. Truncate Sentence (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/truncate-sentence/ Truncate Sentence - 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 문자열 s 와 정수 k가 주어진다. 문자열을 공백 기준으로 나누었을 때 0번째 원소부터 k-1 번째까지를 반환한다. 이 때 자료형은 문자열이며, 원본과 같이 원소 사이의 공백을 포함한다. class Solution: def truncateSentence(self, ..

[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]1688. Count of Matches in Tournament (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/count-of-matches-in-tournament/ Count of Matches in Tournament - 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 팀 수를 나타내는 정수 n이 주어진다. 토너먼트 형식으로 1개의 팀이 남을 때 까지 경기를 진행했을 때, 진행된 경기 횟수의 총합을 반환하는 문제. 주어진 팀이 홀수인경우 1개의 팀은 부전승으로 다음 라운드에 참여한다...

[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..

728x90