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 |
Tags
- datascience
- pytorch
- 프로그래머스
- python
- leetcode
- DeepLearning
- wandb
- NLP
- Kubernetes
- NaverAItech
- 백준
- 코딩테스트
- Matplotlib
- pep8
- FDS
- 완전탐색
- 알고리즘
- docker
- GCP
- PytorchLightning
- Kaggle
- rnn
- github
- FastAPI
- GitHub Action
- autoencoder
- GIT
- torchserve
- vscode
- 네이버AItech
Archives
- Today
- Total
목록개발/Go (1)
Sangmun
Go stack 자료구조
package main import ("fmt") type Stack struct { data []int } func (s *Stack) Push(x int) { s.data = append(s.data, x) } func (s *Stack) Pop() int { if len(s.data) == 0 { return -1 } x := s.data[len(s.data)-1] s.data = s.data[:len(s.data)-1] return x } func (s *Stack) Size() int { return len(s.data) } func (s *Stack) IsEmpty() int { if len(s.data) == 0 { return 1 } return 0 } func (s *Stack) Top(..
개발/Go
2024. 3. 18. 21:52