上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 36 下一页
摘要: Given two strings s and t, determine if they are isomorphic.Two strings are isomorphic if the characters in s can be replaced to get t.All occ... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(132) 评论(0) 推荐(0)
摘要: Climbing Stairs You are climbing a stair case. It takes n steps to reach to the top.Each time you can either climb 1 or 2 steps... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(99) 评论(0) 推荐(0)
摘要: Remove all elements from a linked list of integers that have valueval.ExampleGiven: 1 --> 2 --> 6 --> 3 --> 4 --> 5 --> 6, val = 6Return: 1 --> 2 --... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(101) 评论(0) 推荐(0)
摘要: Description:Count the number of prime numbers less than a non-negative number, n 提示晒数法:http://en.wikipedia.org/wiki/Sieve_of_Eratostheneshttps://p... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(352) 评论(0) 推荐(0)
摘要: 给大家推荐两个学习的地址:极客学院的视频:http://www.jikexueyuan.com/path/ios/一个博客:http://blog.csdn.net/lizhongfu2013/article/details/29210015主要想要实现一个模仿的登陆界面代码://// Login... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(502) 评论(0) 推荐(0)
摘要: Remove Duplicates from Sorted ArrayTotal Accepted:66627 Total Submissions:212739 My Submissions Given a sorted array, remove the... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(81) 评论(0) 推荐(0)
摘要: Given two sorted integer arrays nums1 and nums2, merge nums2 intonums1 as one sorted array.Note:You may assume that nums1 has enough space (size tha... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(119) 评论(0) 推荐(0)
摘要: 代码:#include #include #include #include #include #pragma comment(lib, "gdiplus.lib")using namespace std;using namespace Gdiplus;int main() { Gdiplus... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(1022) 评论(0) 推荐(0)
摘要: Remove Element Total Accepted: 60351 Total Submissions: 187833 My Submissions Given an array and a value, remove all instances ... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(107) 评论(0) 推荐(0)
摘要: String to Integer (atoi)Total Accepted:52232Total Submissions:401038My Submissions Implement atoi to convert a string to an integer.Hint: Carefully co... 阅读全文
posted @ 2017-11-17 22:27 wangyaning 阅读(154) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 36 下一页