반응형
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
- iterm2자동완성
- 터미널꾸미기
- 캐나다 은행계좌 개설
- GAN
- EATS
- iterm2환경설정
- DTW
- agnoster폰트꺠짐
- 콘도렌트
- 캐나다콘도렌트
- Flow
- Normalizing flow
- agnoster폰트
- pytorch
- Generative model
- GenerativeModel
- iterm2꾸미기
- 캐나다 TD 한국인 직원 예약
- 캐나다 TD 예약
- 캐나다 TDBAnk
- 프라이탁 존버
- 딥러닝
- 프라이탁
- 캐나다 은행 계좌 개설
- agnoster폰트깨짐
- Docker
- 머신러닝
- MachineLearning
- 캐나다월세
- 캐나다 TD 한국인 예약
Archives
- Today
- Total
TechNOTE
Leetcode : Check If All 1's Are at Least Length K Places Away 본문
난이도 : EASY
Python
class Solution:
def kLengthApart(self, nums: List[int], k: int) -> bool:
cnt = -1
for num in nums:
if num == 1:
if cnt != -1:
if cnt < k:
return False
cnt =0
else:
if cnt != -1:
cnt += 1
return True
- time complexity O(n)
- memory complexity O(1)
반응형
'coding' 카테고리의 다른 글
Iterm2 환경설정 (0) | 2023.02.28 |
---|---|
Add python virtualenv to jupyter kernel (0) | 2022.08.25 |
[React] Github page 배포하기 (0) | 2021.04.06 |
Comments