leetcode 有效的字母异位词

 2023-09-06 阅读 28 评论 0

摘要:34 / 34 个通过测试用例状态:通过执行用时:4 ms内存消耗:37.3 MBclass Solution {public boolean isAnagram(String s, String t) {if (s.length() != t.length())return false;int countS = 0;int countT = 0;int indexS = 0;int inde

34 / 34 个通过测试用例
状态:通过
执行用时:4 ms
内存消耗:37.3 MB

class Solution {public boolean isAnagram(String s, String t) {if (s.length() != t.length())return false;int countS = 0;int countT = 0;int indexS = 0;int indexT = 0;for (char le = 'a'; le < 'z'; le++) {while ((indexS = s.indexOf(le,indexS)) != -1){countS++;indexS+=1;}while ((indexT = t.indexOf(le,indexT)) != -1){countT++;indexT+=1;}if (countS != countT) return false;}return true;}
}

版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://hbdhgg.com/3/5261.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 匯編語言學習筆記 Inc. 保留所有权利。

底部版权信息