2014年4月7日

4-7

摘要: 自从过了阿里的三面,已经好长时间没有好好刷题了,前两天还小病一场……谢谢天龙的药~明天开始重归正轨,好好刷题好好看算法!你的今天曾是我的昨天,不能回到从前,唯有忘却。夕阳无限美,中将近黄昏。Winter is coming! 阅读全文

posted @ 2014-04-07 19:56 pengyu2003 阅读(97) 评论(0) 推荐(0) 编辑

Remove Duplicates from Sorted List

摘要: Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3, return1->2->3./** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val 阅读全文

posted @ 2014-04-07 14:52 pengyu2003 阅读(71) 评论(0) 推荐(0) 编辑

导航