├── README.md ├── ch01 ├── dup │ ├── dup1.go │ ├── dup2.go │ ├── dup3.go │ └── input.txt ├── echo │ ├── echo1.go │ ├── echo2.go │ ├── echo3.go │ └── echo3_2.go ├── ex01 │ └── echo.go ├── ex02 │ ├── echo.go │ └── echo2.go ├── ex04 │ ├── dup2_2.go │ ├── input1.txt │ └── input2.txt ├── ex05 │ └── lissajous.go ├── ex06 │ └── lissajous.go ├── ex07 │ └── fetch.go ├── ex08 │ └── fetch.go ├── ex09 │ └── fetch.go ├── ex10 │ └── fetchall.go ├── ex11 │ └── fetchall.go ├── fetch │ └── fetch.go ├── fetchall │ └── fetchall.go ├── helloworld.go └── lissajous │ └── lissajous.go ├── ch02 ├── boiling │ └── boiling.go ├── echo │ └── echo4.go ├── ex01 │ ├── conv.go │ ├── tempconv.go │ ├── tempconv_test.go │ └── test.sh ├── ex02 │ └── cf.go ├── ex03 │ ├── popcount.go │ ├── popcount_test.go │ └── test.sh ├── ex04 │ ├── popcount.go │ ├── popcount_test.go │ └── test.sh ├── ex05 │ ├── popcount.go │ ├── popcount_test.go │ └── test.sh ├── ftoc │ └── ftoc.go ├── lconv │ └── lconv.go ├── popcount │ ├── popcount.go │ └── popcount_test.go ├── tempconv │ ├── conv.go │ ├── tempconv.go │ ├── tempconv_test.go │ └── test.sh └── tempconv0 │ └── tempconv0.go ├── ch03 ├── basename1 │ ├── basename1.go │ └── basename1_test.go ├── basename2 │ ├── basename2.go │ └── basename2_test.go ├── comma │ ├── comma.go │ └── comma_test.go ├── complex │ └── complex.go ├── ex10 │ ├── comma2.go │ ├── comma_test.go │ └── test.bash ├── ex11 │ ├── comma3.go │ ├── comma_test.go │ └── test.bash ├── ex12 │ ├── anagram.go │ ├── anagram_test.go │ └── test.bash ├── mandelbrot │ └── mandelbrot.go └── printints │ ├── printints.go │ └── printints_test.go ├── ch06 ├── cache │ └── cache.go ├── cache_main.go ├── coloredpoint │ └── coloredpoint.go ├── coloredpoint_main.go ├── ex01 │ ├── intset.go │ ├── intset_test.go │ └── test.sh ├── geometry │ ├── geometry.go │ └── path.go ├── geometry_main.go ├── intset │ ├── intset.go │ └── intset_test.go └── intset_main.go ├── ch08 ├── clock1 │ └── clock1.go ├── clock2 │ └── clock2.go ├── ex01 │ └── clock3.go └── mustcopy │ └── mustcopy_test.go └── ch11 ├── bench └── palindrome_bench_test.go ├── charcount └── charcount.go ├── charcount_main.go ├── echo ├── echo5.go └── echo_test.go ├── ex01 ├── charcount.go ├── charcount_test.go └── test.sh ├── ex02 ├── intmapset.go ├── intset.go ├── intset_test.go └── test.sh ├── ex03 ├── palindrome.go ├── randNonPalindromes_test.go └── test.sh ├── ex04 ├── palindrome.go ├── punctuation_test.go └── test.sh ├── ex05 ├── split_test.go └── test.sh ├── ex06 ├── popcount.go ├── popcount_bench_test.go ├── result.txt └── test.sh ├── ex07 ├── intmapset.go ├── intset.go ├── intset_bench_test.go ├── result.txt └── test.sh ├── example └── palindrome_example_test.go ├── intmapset └── intmapset.go ├── premature_abstrunction ├── appropriate_test.go └── premature_test.go ├── randomPalindrome ├── randomPalindrome.go └── randomPalindrome_test.go ├── storage1 └── storage1.go ├── storage2 ├── storage2.go └── storage_test.go ├── word1 ├── word.go └── word_test.go └── word2 ├── word.go └── word_test.go /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/README.md -------------------------------------------------------------------------------- /ch01/dup/dup1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/dup/dup1.go -------------------------------------------------------------------------------- /ch01/dup/dup2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/dup/dup2.go -------------------------------------------------------------------------------- /ch01/dup/dup3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/dup/dup3.go -------------------------------------------------------------------------------- /ch01/dup/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/dup/input.txt -------------------------------------------------------------------------------- /ch01/echo/echo1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/echo/echo1.go -------------------------------------------------------------------------------- /ch01/echo/echo2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/echo/echo2.go -------------------------------------------------------------------------------- /ch01/echo/echo3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/echo/echo3.go -------------------------------------------------------------------------------- /ch01/echo/echo3_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/echo/echo3_2.go -------------------------------------------------------------------------------- /ch01/ex01/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/ex01/echo.go -------------------------------------------------------------------------------- /ch01/ex02/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/ex02/echo.go -------------------------------------------------------------------------------- /ch01/ex02/echo2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/ex02/echo2.go -------------------------------------------------------------------------------- /ch01/ex04/dup2_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/ex04/dup2_2.go -------------------------------------------------------------------------------- /ch01/ex04/input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/ex04/input1.txt -------------------------------------------------------------------------------- /ch01/ex04/input2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/ex04/input2.txt -------------------------------------------------------------------------------- /ch01/ex05/lissajous.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/ex05/lissajous.go -------------------------------------------------------------------------------- /ch01/ex06/lissajous.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/ex06/lissajous.go -------------------------------------------------------------------------------- /ch01/ex07/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/ex07/fetch.go -------------------------------------------------------------------------------- /ch01/ex08/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/ex08/fetch.go -------------------------------------------------------------------------------- /ch01/ex09/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/ex09/fetch.go -------------------------------------------------------------------------------- /ch01/ex10/fetchall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/ex10/fetchall.go -------------------------------------------------------------------------------- /ch01/ex11/fetchall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/ex11/fetchall.go -------------------------------------------------------------------------------- /ch01/fetch/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/fetch/fetch.go -------------------------------------------------------------------------------- /ch01/fetchall/fetchall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/fetchall/fetchall.go -------------------------------------------------------------------------------- /ch01/helloworld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/helloworld.go -------------------------------------------------------------------------------- /ch01/lissajous/lissajous.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch01/lissajous/lissajous.go -------------------------------------------------------------------------------- /ch02/boiling/boiling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/boiling/boiling.go -------------------------------------------------------------------------------- /ch02/echo/echo4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/echo/echo4.go -------------------------------------------------------------------------------- /ch02/ex01/conv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/ex01/conv.go -------------------------------------------------------------------------------- /ch02/ex01/tempconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/ex01/tempconv.go -------------------------------------------------------------------------------- /ch02/ex01/tempconv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/ex01/tempconv_test.go -------------------------------------------------------------------------------- /ch02/ex01/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | go test *.go 4 | -------------------------------------------------------------------------------- /ch02/ex02/cf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/ex02/cf.go -------------------------------------------------------------------------------- /ch02/ex03/popcount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/ex03/popcount.go -------------------------------------------------------------------------------- /ch02/ex03/popcount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/ex03/popcount_test.go -------------------------------------------------------------------------------- /ch02/ex03/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | go test *.go 4 | -------------------------------------------------------------------------------- /ch02/ex04/popcount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/ex04/popcount.go -------------------------------------------------------------------------------- /ch02/ex04/popcount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/ex04/popcount_test.go -------------------------------------------------------------------------------- /ch02/ex04/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | go test *.go 4 | -------------------------------------------------------------------------------- /ch02/ex05/popcount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/ex05/popcount.go -------------------------------------------------------------------------------- /ch02/ex05/popcount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/ex05/popcount_test.go -------------------------------------------------------------------------------- /ch02/ex05/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | go test *.go 4 | -------------------------------------------------------------------------------- /ch02/ftoc/ftoc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/ftoc/ftoc.go -------------------------------------------------------------------------------- /ch02/lconv/lconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/lconv/lconv.go -------------------------------------------------------------------------------- /ch02/popcount/popcount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/popcount/popcount.go -------------------------------------------------------------------------------- /ch02/popcount/popcount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/popcount/popcount_test.go -------------------------------------------------------------------------------- /ch02/tempconv/conv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/tempconv/conv.go -------------------------------------------------------------------------------- /ch02/tempconv/tempconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/tempconv/tempconv.go -------------------------------------------------------------------------------- /ch02/tempconv/tempconv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/tempconv/tempconv_test.go -------------------------------------------------------------------------------- /ch02/tempconv/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | go test *.go 4 | -------------------------------------------------------------------------------- /ch02/tempconv0/tempconv0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch02/tempconv0/tempconv0.go -------------------------------------------------------------------------------- /ch03/basename1/basename1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/basename1/basename1.go -------------------------------------------------------------------------------- /ch03/basename1/basename1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/basename1/basename1_test.go -------------------------------------------------------------------------------- /ch03/basename2/basename2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/basename2/basename2.go -------------------------------------------------------------------------------- /ch03/basename2/basename2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/basename2/basename2_test.go -------------------------------------------------------------------------------- /ch03/comma/comma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/comma/comma.go -------------------------------------------------------------------------------- /ch03/comma/comma_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/comma/comma_test.go -------------------------------------------------------------------------------- /ch03/complex/complex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/complex/complex.go -------------------------------------------------------------------------------- /ch03/ex10/comma2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/ex10/comma2.go -------------------------------------------------------------------------------- /ch03/ex10/comma_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/ex10/comma_test.go -------------------------------------------------------------------------------- /ch03/ex10/test.bash: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | go test *.go 4 | -------------------------------------------------------------------------------- /ch03/ex11/comma3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/ex11/comma3.go -------------------------------------------------------------------------------- /ch03/ex11/comma_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/ex11/comma_test.go -------------------------------------------------------------------------------- /ch03/ex11/test.bash: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | go test *.go 4 | -------------------------------------------------------------------------------- /ch03/ex12/anagram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/ex12/anagram.go -------------------------------------------------------------------------------- /ch03/ex12/anagram_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/ex12/anagram_test.go -------------------------------------------------------------------------------- /ch03/ex12/test.bash: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | go test *.go 4 | -------------------------------------------------------------------------------- /ch03/mandelbrot/mandelbrot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/mandelbrot/mandelbrot.go -------------------------------------------------------------------------------- /ch03/printints/printints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/printints/printints.go -------------------------------------------------------------------------------- /ch03/printints/printints_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch03/printints/printints_test.go -------------------------------------------------------------------------------- /ch06/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch06/cache/cache.go -------------------------------------------------------------------------------- /ch06/cache_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch06/cache_main.go -------------------------------------------------------------------------------- /ch06/coloredpoint/coloredpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch06/coloredpoint/coloredpoint.go -------------------------------------------------------------------------------- /ch06/coloredpoint_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch06/coloredpoint_main.go -------------------------------------------------------------------------------- /ch06/ex01/intset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch06/ex01/intset.go -------------------------------------------------------------------------------- /ch06/ex01/intset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch06/ex01/intset_test.go -------------------------------------------------------------------------------- /ch06/ex01/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | go test *.go 4 | -------------------------------------------------------------------------------- /ch06/geometry/geometry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch06/geometry/geometry.go -------------------------------------------------------------------------------- /ch06/geometry/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch06/geometry/path.go -------------------------------------------------------------------------------- /ch06/geometry_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch06/geometry_main.go -------------------------------------------------------------------------------- /ch06/intset/intset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch06/intset/intset.go -------------------------------------------------------------------------------- /ch06/intset/intset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch06/intset/intset_test.go -------------------------------------------------------------------------------- /ch06/intset_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch06/intset_main.go -------------------------------------------------------------------------------- /ch08/clock1/clock1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch08/clock1/clock1.go -------------------------------------------------------------------------------- /ch08/clock2/clock2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch08/clock2/clock2.go -------------------------------------------------------------------------------- /ch08/ex01/clock3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch08/ex01/clock3.go -------------------------------------------------------------------------------- /ch08/mustcopy/mustcopy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch08/mustcopy/mustcopy_test.go -------------------------------------------------------------------------------- /ch11/bench/palindrome_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/bench/palindrome_bench_test.go -------------------------------------------------------------------------------- /ch11/charcount/charcount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/charcount/charcount.go -------------------------------------------------------------------------------- /ch11/charcount_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/charcount_main.go -------------------------------------------------------------------------------- /ch11/echo/echo5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/echo/echo5.go -------------------------------------------------------------------------------- /ch11/echo/echo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/echo/echo_test.go -------------------------------------------------------------------------------- /ch11/ex01/charcount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex01/charcount.go -------------------------------------------------------------------------------- /ch11/ex01/charcount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex01/charcount_test.go -------------------------------------------------------------------------------- /ch11/ex01/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | go test -v 4 | -------------------------------------------------------------------------------- /ch11/ex02/intmapset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex02/intmapset.go -------------------------------------------------------------------------------- /ch11/ex02/intset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex02/intset.go -------------------------------------------------------------------------------- /ch11/ex02/intset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex02/intset_test.go -------------------------------------------------------------------------------- /ch11/ex02/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | go test -v 4 | -------------------------------------------------------------------------------- /ch11/ex03/palindrome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex03/palindrome.go -------------------------------------------------------------------------------- /ch11/ex03/randNonPalindromes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex03/randNonPalindromes_test.go -------------------------------------------------------------------------------- /ch11/ex03/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | go test 4 | -------------------------------------------------------------------------------- /ch11/ex04/palindrome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex04/palindrome.go -------------------------------------------------------------------------------- /ch11/ex04/punctuation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex04/punctuation_test.go -------------------------------------------------------------------------------- /ch11/ex04/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | go test 4 | -------------------------------------------------------------------------------- /ch11/ex05/split_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex05/split_test.go -------------------------------------------------------------------------------- /ch11/ex05/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | go test -v 4 | -------------------------------------------------------------------------------- /ch11/ex06/popcount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex06/popcount.go -------------------------------------------------------------------------------- /ch11/ex06/popcount_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex06/popcount_bench_test.go -------------------------------------------------------------------------------- /ch11/ex06/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex06/result.txt -------------------------------------------------------------------------------- /ch11/ex06/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex06/test.sh -------------------------------------------------------------------------------- /ch11/ex07/intmapset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex07/intmapset.go -------------------------------------------------------------------------------- /ch11/ex07/intset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex07/intset.go -------------------------------------------------------------------------------- /ch11/ex07/intset_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex07/intset_bench_test.go -------------------------------------------------------------------------------- /ch11/ex07/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex07/result.txt -------------------------------------------------------------------------------- /ch11/ex07/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/ex07/test.sh -------------------------------------------------------------------------------- /ch11/example/palindrome_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/example/palindrome_example_test.go -------------------------------------------------------------------------------- /ch11/intmapset/intmapset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/intmapset/intmapset.go -------------------------------------------------------------------------------- /ch11/premature_abstrunction/appropriate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/premature_abstrunction/appropriate_test.go -------------------------------------------------------------------------------- /ch11/premature_abstrunction/premature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/premature_abstrunction/premature_test.go -------------------------------------------------------------------------------- /ch11/randomPalindrome/randomPalindrome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/randomPalindrome/randomPalindrome.go -------------------------------------------------------------------------------- /ch11/randomPalindrome/randomPalindrome_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/randomPalindrome/randomPalindrome_test.go -------------------------------------------------------------------------------- /ch11/storage1/storage1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/storage1/storage1.go -------------------------------------------------------------------------------- /ch11/storage2/storage2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/storage2/storage2.go -------------------------------------------------------------------------------- /ch11/storage2/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/storage2/storage_test.go -------------------------------------------------------------------------------- /ch11/word1/word.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/word1/word.go -------------------------------------------------------------------------------- /ch11/word1/word_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/word1/word_test.go -------------------------------------------------------------------------------- /ch11/word2/word.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/word2/word.go -------------------------------------------------------------------------------- /ch11/word2/word_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twada/golang-study/HEAD/ch11/word2/word_test.go --------------------------------------------------------------------------------