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
- algorithum
- javascript 게임
- Nodejs 프로젝트
- hyperledger
- 컴퓨터공학개론
- Javascript
- 관계형데이터베이스
- 블록체인
- js
- nodejs
- DataStructure
- 하이퍼레저
- 제로초
- 파이썬 알고리즘
- vs code
- 블록몽키
- 블록체인개론
- hyperledger fabric
- javascript 초급
- al
- Blockmonkey
- 컴퓨터사이언스
- 깃
- mysql
- 자바스크립트
- javascirpt
- SQL
- 생활코딩
- 프로그래밍
- 생활코딩 nodejs
Archives
- Today
- Total
목록Blockmonkey (11)
Blockmonkey
func fibonacciNumbers(n int) int { //기저조건 if n
Web Development/CommonSense
2022. 11. 12. 16:49
// 큐 (FIFO) type Que []interface{} func (q *Que) addQue(_appendNum int) Que { *q = append(*q, _appendNum) return *q } func (q *Que) removeQue() interface{} { if len(*q)
Web Development/CommonSense
2022. 11. 12. 15:57
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