[leetcode, JS] 3146. Permutation Difference between Two Strings

mxxn·2024년 7월 28일
0

leetcode

목록 보기
195/198

문제

문제 링크 : Permutation Difference between Two Strings

풀이

/**
 * @param {string} s
 * @param {string} t
 * @return {number}
 */
var findPermutationDifference = function(s, t) {
    let sum = 0
    for(let el of s) {
        sum += Math.abs(s.indexOf(el) - t.indexOf(el))
    }

    return sum
};
  1. sum 변수를 만들고
  2. for문을 통해 s,t의 같은 알파벳 index 차이의 절대값을 sum에 더하는 방식
  • Runtime 62 ms, Memory 50.93 MB
profile
내일도 글쓰기

0개의 댓글