摘要: /* * bitAnd - x&y using only ~ and | * Example: bitAnd(6, 5) = 4 * Legal ops: ~ | * Max ops: 8 * Rating: 1 */int bitAnd(int x, int y) { z=~(~x|~y); re 阅读全文
posted @ 2019-09-13 20:37 柠檬味呀 阅读(1016) 评论(0) 推荐(0) 编辑