일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 연결리스트
- 코딩
- 운영체제
- C++ gui
- OS
- Nebula
- 자료구조
- JUCE library
- vim-go
- c++ heap
- JUCE
- C++ library
- gui
- 프로그래밍
- JUCE 튜토리얼
- 백준
- C언어
- tour of go
- JUCE라이브러리
- C++ gui 라이브러리
- 알고리즘
- go
- BOJ
- LOB
- Docker
- 공룡책
- 리듬게임
- go channel
- a tour of go
- C++
- Today
- Total
목록Programming/Go (22)
CafeM0ca
tour.golang.org/moretypes/23 A Tour of Go tour.golang.org 문제 Implement WordCount. It should return a map of the counts of each “word” in the string s. The wc.Test function runs a test suite against the provided function and prints success or failure. You might find strings.Fields helpful. 단어를 map에 저장하고 나온 갯수만큼 매핑하여 카운팅하는 문제. WordCount 함수 내부를 채워넣으면 된다. func WordCount(s string) map[stirng]int { m ..
A Tour of Go 정리 code convention은 https://github.com/golang/go/wiki/CodeReviewComments?fbclid=IwAR1RtGyVpP_iPKMqReVwKfufv0aD9J7JQfwuTNFnnVgxKbW5MMpMcqKCj-o 를 바탕으로 습관을 들이자. array var a [10]int 위 처럼 사이즈가 고정되어 있다. slice slice 자료형은 동적으로 크기가 달라진다. package main import "fmt" func addSliceValue(s []int) { for i := 0; i < len(s); i++ { s[i]++ } } func main() { primes := [6]int{2, 3, 5, 7, 11, 13} // prime..