【算法题】输出指定字母在字符串的中的索引(js)

【算法题】输出指定字母在字符串的中的索引(js)_第1张图片
【算法题】输出指定字母在字符串的中的索引(js)_第2张图片

function solution(str) {
  const words = str.split(" ")[0];
  const word = str
    .split(" ")[0]
    .split("")
    .sort((a, b) => a.localeCompare(b))[parseInt(str.split(" ")[1]) - 1];
  return words.indexOf(word);
}

console.log(solution("hAkDAjByBq 4"));
/* 
hAkDAjByBq 4
=>
6
 */

你可能感兴趣的:(算法题,javascript,算法,前端)