第二题用二进制移位来算,如 3:11     6: 110    , 所以如果要满足能通过移位出来结果,需要s1.startWith(s2) 且 后面的都是 0 ,之后计算0的数量 num  , 答案就是 num % 3 == 0 ? num / 3 : (num / 3 + 1)