题解 | 二进制插入
二进制插入
https://www.nowcoder.com/practice/30c1674ad5694b3f8f0bc2de6f005490
#include <cmath>
class BinInsert {
public:
int binInsert(int n, int m, int j, int i) {
// write code here
n = n | (m<< j);
return n;
}
};
