This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"encoding/json" | |
"errors" | |
"fmt" | |
"log" | |
"net/http" | |
"net/url" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ( | |
testString = "xkjXS98XarHFzP1DQu03fJTLQQ7raCvoSKwlAjtTUgxZIbRt9OoAQyByESBXFYnxoHetPiZdfLHUDSh6ix1MQ2hUWKli2c79RPCjJd8weljUMh7XjIToFjU7W67gYDwMAtihxI5twI33hL6Bran4wclJcOGZVmlkASofpsPSWmsR3PS8p01rrVxcCvuSXuyIQa0JMrLI" | |
testStringsSlice = make([]struct{}, 1000) | |
) | |
// 69.4 ns/op | |
func BenchmarkForString(b *testing.B) { | |
for i := 0; i < b.N; i++ { | |
for j := 0; j < len(testString); j++ { | |
if testString[j] == '0' { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func mergeSlices(s1, s2 []string) []string { | |
if s1 == nil { | |
return s2 | |
} else if s2 == nil { | |
return s1 | |
} | |
S1Loop: | |
for _, e1 := range s1 { | |
for _, e2 := range s2 { // Avoid duplicates. | |
if e1 == e2 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#GithubAPI Routes: 203 | |
GowwwRouter: 88024 Bytes | |
HttpRouter: 37464 Bytes | |
#GPlusAPI Routes: 13 | |
GowwwRouter: 6272 Bytes | |
HttpRouter: 2712 Bytes | |
#ParseAPI Routes: 26 | |
GowwwRouter: 10112 Bytes |
NewerOlder