728x90

전체 글 130

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

[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이 주어지면, 한 자리씩 끊은 후 각 숫자를 곱한 결과와 더한 결과를 구한다. 그 후 곱셈 결과에서 덧셈 결과를 뺀 수를 반환하는 문..

728x90