棋子

导航

2015年12月25日 #

Excel Sheet Column Title

摘要: Given a positive integer, return its corresponding column title as appear in an Excel sheet.For example: 1 -> A 2 -> B 3 -> C ... 26 ->... 阅读全文

posted @ 2015-12-25 19:08 鼬与轮回 阅读(219) 评论(0) 推荐(0) 编辑

Remove Linked List Elements

摘要: Remove all elements from a linked list of integers that have valueval.ExampleGiven:1 --> 2 --> 6 --> 3 --> 4 --> 5 --> 6,val= 6Return:1 --> 2 --> 3 --... 阅读全文

posted @ 2015-12-25 13:28 鼬与轮回 阅读(116) 评论(0) 推荐(0) 编辑