()
| 10 | // 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。 |
| 11 | |
| 12 | fn main() { |
| 13 | let n = 5; |
| 14 | let start = 0; |
| 15 | println!("{:?}", xor_operation(n, start)); |
| 16 | } |
| 17 | |
| 18 | pub fn xor_operation(n: i32, start: i32) -> i32 { |
| 19 | let mut res = start; |
nothing calls this directly
no outgoing calls
no test coverage detected