我们有一个长度为m的字符串,其中包含英语字母的前m个字母,但是不知何故,该字符串中缺少一个元素。因此,现在该字符串包含m-1字母。
我们需要编写一个函数,该函数接受一个这样的字符串并返回字符串中缺少的元素
因此,让我们为该函数编写代码-
为此的代码将是-
const str = "acdghfbekj"; const missingCharacter = str => { //使功能更一致 const s = str.toLowerCase(); for(let i = 97; ; i++){ if(s.includes(String.fromCharCode(i))){ continue; }; return String.fromCharCode(i); }; return false; }; console.log(missingCharacter(str));
输出结果
控制台中的输出将为-
i