Ejemplo n.º 1
0
        public void BinaryGap_canFindTheLongestGap(int decimalRep, long binary, int result)
        {
            var answer = sutBinaryGap.Solution2(decimalRep);

            Assert.AreEqual(result, answer);
        }