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
- 블록체인
- 블록체인개론
- mysql
- 자바스크립트
- 파이썬 알고리즘
- Javascript
- vs code
- nodejs
- 깃
- hyperledger
- 프로그래밍
- hyperledger fabric
- 관계형데이터베이스
- 하이퍼레저
- 컴퓨터공학개론
- algorithum
- 생활코딩 nodejs
- Blockmonkey
- 제로초
- javascirpt
- javascript 초급
- 생활코딩
- js
- Nodejs 프로젝트
- SQL
- javascript 게임
- 블록몽키
- al
- 컴퓨터사이언스
- DataStructure
Archives
- Today
- Total
목록go (2)
Blockmonkey
type Stack []interface{} // 스택 (LIFO) func (s *Stack) addStack(_appendNum int) Stack { *s = append(*s, _appendNum) return *s } func (s *Stack) removeStack() interface{} { if len(*s) < 0 { return 0 } topIdx := len(*s) - 1 data := (*s)[topIdx] *s = (*s)[:topIdx] // fmt.Println(*s) return data }
Web Development/CommonSense
2022. 11. 12. 15:48