Wenqiang Yang

Results 9 comments of Wenqiang Yang

change in `/usr/local/Cellar/node/11.10.1/lib/node_modules/leetcode-cli/lib/commands/stat.js:172` can solve this problem ``` if (j >= 0) buf.write(MONTHS[d.month()], j|0); ```

不是吖,你再仔细看看,我也提到了有一个`循环左移`的函数实现吖。 ``` function leftshift(a, n, size=32) { n = n % size return (a >> (size - n)) } ```

@tpasternak colud you please solve this problem?

I find an other module replace it, which is [thriftpy](https://github.com/eleme/thriftpy)

Even public fields are not detected. ``` type Result struct { V *string } var results []Result for _, v := range []string{"a", "b", "c"} { r := Result{V: &v}...

Queue 是标准库的吖。在 python2 中是 Queue,在 python3 中是 queue 官方文档 [Queue](https://docs.python.org/2.7/library/queue.html) 然后深拷贝的话,可以试下 `copy.deepcopy`