我们需要编写一个JavaScript函数,该函数接受一个带有至少一个元音的字符串,并且对于字符串中的每个字符,我们都必须在一个字符串中映射一个数字,该数字表示其与元音的最接近距离。
例如:如果字符串是-
const str = 'vatghvf';
输出结果
那么输出应该是-
const output = [1, 0, 1, 2, 3, 4, 5];
因此,让我们为该函数编写代码-
为此的代码将是-
const str = 'vatghvf'; const nearest = (arr = [], el) => arr.reduce((acc, val) => Math.min(acc, Math.abs(val - el)), Infinity); const vowelNearestDistance = (str = '') => { const s = str.toLowerCase(); const vowelIndex = []; for(let i = 0; i < s.length; i++){ if(s[i] === 'a' || s[i] === 'e' || s[i] === 'i' || s[i] === 'o' || s[i] === 'u'){ vowelIndex.push(i); }; }; return s.split('').map((el, ind) => nearest(vowelIndex, ind)); }; console.log(vowelNearestDistance(str));
输出结果
控制台中的输出将为-
[ 1, 0, 1, 2, 3, 4, 5 ]