单词反转
const reverseWords = (str) => { return str.match(' ').map(item => { return item.split('').reverse().join('') }).join(' ') };
计数二进制子串