<section>课程地址 http://icourse8.com/shelljiaobenbianc.html </section>
章节详情
第1章 课程介绍
第2章 变量的高级用法
第3章 函数的高级用法
第4章 Shell编程中的常用工具
第5章 文本处理三剑客之grep
第6章 文本处理三剑客之sed
第7章 文本处理三剑客之awk
第8章 Shell脚本操作数据库实战
第9章 大型脚本工具开发实战
第10章 课程总结
def longestCommonPrefix(self, strs): if not strs: return "" ss = list(map(set, zip(*strs))) res = "" for i, x in enumerate(ss): x = list(x) if len(x) > 1: break res = res + x[0] return res