()
| 17 | // 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。 |
| 18 | |
| 19 | fn main() { |
| 20 | println!("{:?}", hamming_distance(1, 3)); |
| 21 | } |
| 22 | |
| 23 | pub fn hamming_distance(x: i32, y: i32) -> i32 { |
| 24 | let x = format!("{:#064b}", x); |
nothing calls this directly
no outgoing calls
no test coverage detected