Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 릿코드
- 파이썬 알고리즘 풀기
- 상가수익률계산기
- leetcode풀이
- 코틀린기초
- leetcode풀기
- 릿코드풀기
- 파이썬릿코드
- 파이썬 릿코드
- binary search
- python xor
- python zip_longest
- 파이썬릿코드풀기
- 알고리즘풀이
- 릿코드 파이썬
- python Leetcode
- 릿코드 풀기
- python 알고리즘
- 잇츠디모
- 파이썬 알고리즘
- leetcode 풀기
- python priority queue
- 알고리즘풀기
- python sorted
- 파이썬알고리즘
- 파이썬 프로그래머스
- LeetCode
- python 릿코드
- 릿코드풀이
- 파이썬알고리즘풀기
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 1742. Maximum Number of Balls in a Box 본문
반응형
1742. Maximum Number of Balls in a Box
https://leetcode.com/problems/maximum-number-of-balls-in-a-box/
제목
문제)
솔루션1)
class Solution:
def countBalls(self, lowLimit: int, highLimit: int) -> int:
d = defaultdict(int)
def get_box_num(n):
str_n = str(n)
return sum([int(v) for v in str_n])
for n in range(lowLimit, highLimit+1):
box_number = get_box_num(n)
d[box_number] += 1
return max(d.values())
솔루션2)
솔루션1의 속도를 개선 하였습니다.
기존의 get_box_num() 함수는 숫자를 문자열로 변환 후 반복문을 돌면서 숫자로 변환해서 sum을 취했다면,
나머지 연산과 나누기 연산을 통해서 get_box_num()를 구하도록 변경하였습니다.
class Solution:
def countBalls(self, lowLimit: int, highLimit: int) -> int:
d = defaultdict(int)
def get_box_num(n):
sum1 = 0
while n:
sum1 += n % 10
n //= 10
return sum1
for n in range(lowLimit, highLimit+1):
box_number = get_box_num(n)
d[box_number] += 1
return max(d.values())
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 1347. Minimum Number of Steps to Make Two Strings Anagram (0) | 2021.12.15 |
---|---|
LeetCode 풀기 - 1079. Letter Tile Possibilities (0) | 2021.12.15 |
LeetCode 풀기 - 2053. Kth Distinct String in an Array (0) | 2021.12.13 |
LeetCode 풀기 - 1304. Find N Unique Integers Sum up to Zero (0) | 2021.12.13 |
LeetCode 풀기 - 1382. Balance a Binary Search Tree (0) | 2021.12.09 |
Comments