- go-101-helloworld.pdf Fist step with Golang
- PROXY.md การกำหนด PROXY
- go-101-git-golangbook
- Git and prepare repository for golang book
- Read golang book and work with git #1
- go-101-git-golangbook
- Golang type
- Chapter 2
- Chapter 3
- Read golang book and work with git #2
- go-101-git-golangbook
- Golang variables
- Chapter 4
- Read golang book and work with git #3
- Conditions
- Chapter 5
- Read golang book and work with git #4
- Functions, Arrays, Slides and Map
- Chapter 6
- Chapter 7
- Exam #1: Console Weather
- Read golang book and work with git #5
- Chapter 8 Pointer
- Chapter 9 Struct type, Specific type
- Chapter 10 Method
- Chapter 11 Interface
- Exam #2: Vending Machine
- The return of vending machine
- Go Package
- Introduction TDD (FIZZBUZZ)
- Exam #3: Combined Number
- Go to http://cyber-dojo.org enter practices id
[F9F98C] - เวลาในการทำโจทย์ 09:30-10:30 น.
- ให้ implement ทั้ง test และ production code
- Capture รูป Avatar ตั้งชื่อรูปว่า exam3 ใส่ใน folder exercise แล้ว push ขึ้น github เพื่อระบุตัวตน
Combined Number
Write a function accepting a list of non negative integers,
and returning their largest possible combined number
as a string. For example
given [50, 2, 1, 9] it returns "95021" (9 + 50 + 2 + 1)
given [5, 50, 56] it returns "56550" (56 + 5 + 50)
given [420, 42, 423] it returns "42423420" (42 + 423 + 420)
Source [https://blog.svpino.com/about]
- Go Functional
- Go Routine
- Go Channel
- Exam #4: Speedy Espresso
- Go HTTP
- Go Test
- Midleware
- URL Mapping
- Test Web