728x90

LIST 15

[leetCode] 1773. Count Items Matching a Rule (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/count-items-matching-a-rule/ Count Items Matching a Rule - 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 3개 원소를 가지는 리스트를 1개 이상 가지는 중첩 리스트items가 주어진다. 원소는 순서대로 type, color, name을 나타낸다. ruleKey와 ruleValue가 주어졌을 때, 맞는 값이 items에 몇 개 있는 지..

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

[leetCode] 1920. Build Array from Permutation (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/build-array-from-permutation/ Build Array from Permutation - 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 *Permutation: 순열 (: 고정된 개수를 가진 수들을 일정 규칙에 따라 순서대로 나열한 수열) 수열 nums 가 input으로 주어진다. 인덱스 값을 다시 인덱스로 사용해서 만든 새로운 순열을 반환하는 문제. #최초 ..

[leetCode] 1929. Concatenation of Array (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/concatenation-of-array/ Concatenation of Array - 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가 주어진다. nums의 원소를 한 번 더 반복해서 가지는, 새로운 배열 ans를 반환하는 문제. # for문과 append() class Solution: def getConcatenation(self, nums: List[in..

728x90