【字符串序列判定】Python 实现 def find_last_subsequence(target, source): m = len(target) n = len(source) if m == 0: return 0 if n == 0: return -1 # 逆向匹配,找到最后一个子 序列 python 字符串 len 字符串序列 2025-05-25 14:43 3