1/** 2 * @file 找出字符串中第一个只出现一次的字符 3 */ 4 5function firstSingleChar(str: string) { 6 // 补全此处代码 7 throw new Error('功能待实现'); 8} 9 10// a 和 b 都出现了两次,只有 c 出现了一次,返回 c 11console.log(firstSingleChar('abcba')) // c 12// b c d 都出现了一次,返回第一个 13console.log(firstSingleChar('aabcdee')) // b 14// a 和 b 都出现了多次,没有只出现一次的元素,返回 undefined 15console.log(firstSingleChar('aaaabbbb')) // undefined 16 17export default {}