일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Nebula
- Docker
- 코딩
- 운영체제
- a tour of go
- 프로그래밍
- JUCE라이브러리
- 알고리즘
- BOJ
- OS
- go
- LOB
- 백준
- JUCE library
- JUCE
- 자료구조
- tour of go
- 연결리스트
- C++ library
- C++ gui
- c++ heap
- JUCE 튜토리얼
- C++
- 리듬게임
- C++ gui 라이브러리
- go channel
- vim-go
- gui
- 공룡책
- C언어
Archives
- Today
- Total
목록tour of go map exercise (1)
CafeM0ca
[Go] A Tour of Go: Exercise Maps 풀이
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 ..
Programming/Go
2020. 12. 2. 16:58