ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
Code :-class Solution { public: int minBitFlips(int start, int goal) { int X = (start ^ goal); int count = 0; while (X) { if (X % 2) count++; X /= 2; } return count; }};
very good explanation
Thank you ❤️❤️
Code :-
class Solution {
public:
int minBitFlips(int start, int goal) {
int X = (start ^ goal);
int count = 0;
while (X) {
if (X % 2) count++;
X /= 2;
}
return count;
}
};
very good explanation
Thank you ❤️❤️
Thank you ❤️❤️