摘要:
Algorithm "Remove Nth Node From End of List" Solution 简单的链表实现,主要还是对空集的判断。 REVIEW 《信号和系统》奥本海姆,一本关于数字信号的初级的书本,初步阅读了书籍的导论部分,了解了信号的数字解析方式,这本书是进行图像处理和语音识别的 阅读全文
摘要:
Algorithm: "3Sum Closest" Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. 阅读全文
摘要:
Algorithm: "15. 3Sum" Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the a 阅读全文
摘要:
Algorithm: "14. Longest Common Prefix" Write a function to find the longest common prefix string amongst an array of strings. If there is no common pr 阅读全文