2024每日刷题(135)
Leetcode—3146. 两个字符串的排列差
实现代码
class Solution {
public:
int findPermutationDifference(string s, string t) {
int maps[26];
int mapt[26];
for(int i = 0; i < s.size(); i++) {
int idxs = s[i] - 'a';
int idxt = t[i] - 'a';
maps[idxs] = i;
mapt[idxt] = i;
}
int ans = 0;
for(int i = 0; i < 26; i++) {
ans += abs(maps[i] - mapt[i]);
}
return ans;
}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!