摘要:
参考文献: http://www.statisticshowto.com/skewed-distribution/ left/negatively-skewed distributions : boxplot:The left whisker will also be longer than the 阅读全文
摘要:
141. Linked List Cycle Given a linked list, determine if it has a cycle in it. 解题思路: 需要检查before和after隔一个的情况。因为除了开始时,如果检查的是before和after相邻,那么两个元素成环时,aft 阅读全文
摘要:
14. Longest Common Prefix Write a function to find the longest common prefix string amongst an array of strings. 解题思路: 以strs[0]为标准,LCP的长度必不超过strs[0]的长 阅读全文