赞
踩
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; } };
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。