02 2019 档案

摘要:ex4.10 package main import ( "flag" "fmt" "log" "os" "time" "gopl.io/ch4/github" ) var m = flag.Int("m", 0, "positive: query issues created during rec 阅读全文
posted @ 2019-02-22 17:21 zerofl-diary 阅读(530) 评论(0) 推荐(0)
摘要:4.1 package main import ( "crypto/sha256" "fmt" ) func popCount(b [32]byte) (res int) { for _, v := range b { n := int(v) for n > 0 { n = n & (n - 1) 阅读全文
posted @ 2019-02-20 18:38 zerofl-diary 阅读(642) 评论(0) 推荐(0)