728x90

Python 55

[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] 1512. Number of Good Pairs (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/number-of-good-pairs/ Number of Good 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 주어진 정수 리스트에서 2개씩 뽑아서 만들 수 있는 조합 중, 각 튜플 안의 수 2개를 더한 값이 같은 것 끼리 모았을 때 그 짝의 수가 가장 많은 조합을 찾고 정수로 반환하는 문제. 먼저 조합과 순열에 대한 개념을 한 번 더 확인했다. 조합 : n개에서..

[leetCode] 13. Roman to Integer (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/roman-to-integer/submissions/ Roman to 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 검색 없이 혼자 해결해보고 싶어서 고집부리다가 2시간 걸렸다.. 문제 푼 시간보다 그냥 포기하고 다른 사람들 답 참고할까 고민하면서 몸부림친 시간이 더 길었다 ..^^ 조금 자괴감이 들기도 하지만.. 포기하지 않았음에 의의를.. class Solu..

728x90