~/LeetCode-Go/leetcode/0190.Reverse-Bits$ go test
------------------------Leetcode Problem 190------------------------
【input】:00000010100101000001111010011100 【output】:964176192 (00111001011110000010100101000000)
【input】:11111111111111111111111111111101 【output】:3221225471 (10111111111111111111111111111111)
PASS
ok github.com/halfrost/LeetCode-Go/leetcode/0190.Reverse-Bits 0.164s
修复了题目190和191运行go test时,uint32类型的显示问题。 这样就能与力扣官网的输入输出显示一致啦。望大佬采纳!