728x90

전체글 130

[leetCode] 1967. Number of Strings That Appear as Substrings in Word (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/number-of-strings-that-appear-as-substrings-in-word/ Number of Strings That Appear as Substrings in Word - 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 return the number of strings in patterns that exist as a substring in word. A su..

[leetCode] 2427. Number of Common Factors (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/number-of-common-factors/ Number of Common Factors - 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 주어진 정수 a, b의 공약수를 반환하는 문제. class Solution: def commonFactors(self, a: int, b: int) -> int: a_div = [] cnt = 0 for i in range(1, a + 1)..

[leetCode] 561. Array Partition (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/array-partition/ Array Partition - 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가 주어진다. 2개씩 조합했을 때(combination) 각 원소 중 더 작은 값만 골라 모두 더했을 때 최대값을 구하는 문제. class Solution: def arrayPairSum(self, nums: List[int]) -> ..

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

728x90