有道算法题是求两个字符串中的最小字串,求大佬帮忙看下是哪里出错了一直提交0%?我自己的测试集都过了,实在不明白为什么会0% class LongestSubstring { public: int findLongest(string A, int n, string B, int m) { // write code here int aLeft,aRight; int maxLen = 0; for(aLeft = 0,aRight = 0; aLeft < n; ...