728x90

코딩 테스트/leetCode 46

[leetCode] 2367. Number of Arithmetic Triplets (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/number-of-arithmetic-triplets/ Number of Arithmetic Triplets - 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 Arithmetic Triplets : 산술 삼중항 값이 증가하는 정수를 담는 리스트 nums와 정수 diff가 주어진다. nums[0] 부터 숫자 3개를 뽑는데 직전 숫자와의 차이가 diff와 같은 경우의 수를 반환하는 ..

[leetCode] 1859. Sorting the Sentence (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/sorting-the-sentence/ Sorting the 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 class Solution: def sortSentence(self, s: str) -> str: tmp = s.split() # 공백 기준으로 잘라 저장 answer = [] for i in range(1,len(tmp)+1): # 1부터 단어 수 만큼..

[leetCode] 1221. Split a String in Balanced Strings (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/split-a-string-in-balanced-strings/ Split a String in Balanced Strings - 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 R 과 L로만 이루어진 문자열 s가 주어진다. R과 L의 개수가 같은 문장을 Balanced Strings 라고 했을 때, s 안에 몇 개의 Balanced Strings가 있는 지 정수로 반환하는 문제...

[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] 1678. Goal Parser Interpretation (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/goal-parser-interpretation/ Goal Parser Interpretation - 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 문자열 변수 command 가 주어진다. 문자열에 () 가 있다면 o로, (al) 은 로 반환하는 문제. class Solution: def interpret(self, command: str) -> str: command = com..

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

[leetCode] 1281. Subtract the Product and Sum of Digits of an Integer (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/subtract-the-product-and-sum-of-digits-of-an-integer/ Subtract the Product and Sum of Digits of an Integer - 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이 주어지면, 한 자리씩 끊은 후 각 숫자를 곱한 결과와 더한 결과를 구한다. 그 후 곱셈 결과에서 덧셈 결과를 뺀 수를 반환하는 문..

[leetCode] 1431. Kids With the Greatest Number of Candies (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/kids-with-the-greatest-number-of-candies/ Kids With the Greatest Number of Candies - 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 정수 배열이 주어진다. 각 원소에 변수 extraCandies를 더했을 때, 전체 원소 중 최대값인지 여부를 판단하고 그 불리언 값을 리스트로 반환하는 문제. class Solutio..

[leetCode] 1832. Check if the Sentence Is Pangram (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/check-if-the-sentence-is-pangram/ Check if the Sentence Is Pangram - 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 true if sentence is a..

[leetCode] 771. Jewels and Stones (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/jewels-and-stone/ Jewels and Stones - 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 문자열 jewels과 stones이 주어진다. jewels의 각 문자는(char) 보석 종류를 나타내고 stones의 문자는 내가 가진 돌을 나타낸다. stones중 보석이 몇 개인지 구하고 반환하는 문제. class Solution: def numJewelsInSt..

728x90