728x90

전체 글 130

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

[leetCode] 2160. Minimum Sum of Four Digit Number After Splitting Digits (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/minimum-sum-of-four-digit-number-after-splitting-digits/ Minimum Sum of Four Digit Number After Splitting Digits - 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 4자리 양의 정수를 담은 변수 num이 주어진다. 2개의 수로 만들어 더했을 때의 최소값을 찾고 그 값을 반환하는 문제. clas..

[leetCode] 2114. Maximum Number of Words Found in Sentences (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/maximum-number-of-words-found-in-sentences/submissions/ Maximum Number of Words Found in Sentences - 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개의 문자열 원소가 들어있다. 단어 단위로 세었을 때, 가장 큰 수를 가진 원소를 찾아 그 값을 반환하는 문제. class Solu..

[leetCode] 2413. Smallest Even Multiple (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/smallest-even-multiple/ return the smallest integer that is a multiple of both 2 and n. = Least Common multiple 양의 정수 n이 주어질 때, 2와 n의 최소 공배수를 반환하는 문제. math에 분명 메서드가 있을텐데.. 뭐였는 지 기억이 안 나기도 했고 기본 for문으로 직접 구현해보고 싶어서 도전했으나..너무 어려웠다. import math #최대 공약수 (Greatest Common Divisor) math.gcd(6,9) # 3 #최소 공배수 (Least Common Multiple) math.lcm(10,20) # 20 최대공약..

[leetCode] 1470. Shuffle the Array (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/shuffle-the-array/ Shuffle the 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 [x₁, x₂,..., y₁, y₂,...] 형태의 2n개의 요소로 구성된 배열이 주어진다. [x₁, y₁, x₂,, y₂,.. 형식으로 반환하는 문제. *아래 첨자는 인덱스 번호를 의미한다. 예를 들어 [1,2,3,4,5,6]라는 배열이 있다면 [1,4,2,5,3..

[leetCode] 1108. Defanging an IP Address (Python)

▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/defanging-an-ip-address/ Defanging an IP Address - 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 *defang : 1. make (something) harmless or ineffectual 2. remove the fangs from (an animal, especially a snake). class Solution: def defa..

728x90