Leetcode
AltenLi
在模式识别/机器学习/图像处理摸爬滚打中...
展开
-
[LeetCode] Reverse Linked List II
Reverse a linked list from position m to n. Do it in-place and in one-pass. For example: Given 1->2->3->4->5->NULL, m = 2 and n = 4, return 1->4->3->2->5->NULL. Note: Given m, n satisfy t原创 2014-04-17 23:29:20 · 938 阅读 · 0 评论 -
[LeetCode] Minimum Window Substring -- python
最近在用python刷leetcode的题,发现原创 2014-09-24 10:36:40 · 3126 阅读 · 0 评论 -
[Leetcode] Decode Ways - python
A message containing letters from A-Z is being encoded to numbers using the following mapping: 'A' -> 1 'B' -> 2 ... 'Z' -> 26 Given an encoded message containing digits, determine the total nu原创 2014-09-28 14:48:08 · 1484 阅读 · 0 评论