일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 캐나다 은행계좌 개설
- 캐나다 TD 한국인 예약
- iterm2자동완성
- pytorch
- 캐나다 TDBAnk
- iterm2환경설정
- GAN
- 터미널꾸미기
- 캐나다 TD 한국인 직원 예약
- 캐나다 TD 예약
- 머신러닝
- GenerativeModel
- MachineLearning
- 캐나다월세
- DTW
- agnoster폰트
- 캐나다콘도렌트
- 딥러닝
- Normalizing flow
- iterm2꾸미기
- 프라이탁
- Flow
- agnoster폰트깨짐
- EATS
- 콘도렌트
- Docker
- 프라이탁 존버
- Generative model
- agnoster폰트꺠짐
- 캐나다 은행 계좌 개설
- Today
- Total
목록coding (4)
TechNOTE
ZSH_THEME="agnoster" 맨날 맥북 옮길 때마다 재설정하기 귀찮아서 써 놓는 루틴쓰 .. 1. 일단 iterm 2 설치 2. Oh my zsh 설치 https://ohmyz.sh/ Oh My Zsh - a delightful & open source framework for Zsh Oh My Zsh is a delightful, open source, community-driven framework for managing your Zsh configuration. It comes bundled with several helpful functions, helpers, plugins, themes, and a few things that make you shout... OH MY ZSH! ohm..
python -m ipykernel install --name jsd
1. create-react-app npx create-react-app blog cd blog npm start 2. github repository 생성. {username}.github.io 로 생성이 되는데 나는 뒤에 추가 링크가 생기는게 싫어서 {username}.github.io 로 링크를 만들었다. 3. blog에 git 달아주기 저 {link} 라고 되어있는 부분은 아래 이미지에서 가져오자. git init git add * git commit -m "first commit" gir remote add origin {link} git push -u origin master 4. gh-pages 설치 및 setting `gh-pages` 패키지 설치 npm install gh-pages 설치..
난이도 : 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)