# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param s string字符串 # @param c string字符串 # @return int整型 # 出错位置: 最后统计时候累加的是s_list[i] 的值 class Solution: def isCongruent(self , s: str, c: str) -> int: # write code here s_list=[0]*26 c_list=[0]*26 s_len=len(s) c_len=len(c) if s_len!=c_len: return -1 f...