일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- C++ library
- 프로그래밍
- tour of go
- BOJ
- Docker
- JUCE
- go
- go channel
- LOB
- 알고리즘
- a tour of go
- 연결리스트
- C++
- JUCE library
- C++ gui 라이브러리
- 공룡책
- vim-go
- c++ heap
- 리듬게임
- C++ gui
- JUCE라이브러리
- gui
- C언어
- 코딩
- 운영체제
- 백준
- OS
- 자료구조
- JUCE 튜토리얼
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