mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-13 01:30:28 +01:00
4 lines
105 B
C#
4 lines
105 B
C#
|
public class Solution {
|
||
|
public int MinBitFlips(int start, int goal) => int.PopCount(start ^ goal);
|
||
|
}
|