| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 3줄정리
- realclass
- 영어원서읽기
- Daily Challenge
- 링피트
- 월간
- 사이드
- 쓰릴오브파이트
- 매일
- Problem Solving
- 만화도
- 읽기
- 30분
- 10분
- 뭐든
- 개발자
- 리얼 클래스
- 괜찮음
- leetcode
- 화상영어
- 프로젝트
- Writing
- FIT XR
- 잡생각
- 파비최
- 스탭퍼
- English
- 미드시청
- 운동
- 영어공부
Archives
- Today
- Total
파비의 매일매일 공부기록
2023.01.19 Today's Challenge 본문
https://leetcode.com/problems/subarray-sums-divisible-by-k/
Subarray Sums Divisible by K - LeetCode
Subarray Sums Divisible by K - Given an integer array nums and an integer k, return the number of non-empty subarrays that have a sum divisible by k. A subarray is a contiguous part of an array. Example 1: Input: nums = [4,5,0,-2,-3,1], k = 5 Output: 7
leetcode.com
prefix sum과 frequency table을 활용
class Solution:
def subarraysDivByK(self, nums: List[int], k: int) -> int:
freq = defaultdict(int)
freq[0] = 1
res = pre_sum = 0
for n in nums:
pre_sum += n
rem = pre_sum % k
res += freq[rem]
freq[rem] += 1
return res반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
| 2023.01.21 Today's Challenge (0) | 2023.01.21 |
|---|---|
| 2023.01.20 Today's Challenge (0) | 2023.01.20 |
| 2023.01.18 Today's Challenge (0) | 2023.01.18 |
| 2023.01.17 Today's Challenge (0) | 2023.01.17 |
| 2023.01.16 Today's Challenge (0) | 2023.01.16 |
Comments