摘要: // My own solutionclass Solution { public: bool canWinNim(int n) { return (n % 4); } }; 阅读全文
posted @ 2016-09-27 19:43 blankquiz 阅读(84) 评论(0) 推荐(0)
摘要: // My own solutionclass Solution { public: string reverseString(string s) { return string(s.crbegin(), s.crend()); } }; // My own solutionclass Solution { public: string reverse... 阅读全文
posted @ 2016-09-26 17:31 blankquiz 阅读(108) 评论(0) 推荐(0)
摘要: // My own solutionclass Solution { public: vector<int> countBits(int num) { vector<int> ret = {0}; if(num <= 0) return ret; ret.push_back(1); int i = 阅读全文
posted @ 2016-09-25 11:52 blankquiz 阅读(151) 评论(0) 推荐(0)
摘要: —– BEGIN LICENSE —– Michael Barnes Single User License EA7E-821385 8A353C41 872A0D5C DF9B2950 AFF6F667 C458EA6D 8EA3C286 98D1D650 131A97AB AA919AEC EF20E143 B361B1E7 4C8B7F04 B085E65E 2F5F5360 8489D4... 阅读全文
posted @ 2016-09-17 08:50 blankquiz 阅读(565) 评论(0) 推荐(0)
摘要: BSD开源协议(original BSD license、FreeBSD license、Original BSD license) BSD开源协议是一个给于使用者很大自由的协议。基本上使用者可以”为所欲为”,可以自由的使用,修改源代码,也可以将修改后的代码作为开源或者专有软件再发布。 但”为所欲为 阅读全文
posted @ 2016-09-16 18:37 blankquiz 阅读(220) 评论(0) 推荐(0)
摘要: 我们在Windows系统里格式化磁盘的时候,文件系统的选项里可以看到有“FAT”、“FAT32”、“NTFS”等选项,在对U盘或其他移动存储设备 格式化的时候还会出现“exFAT”选项,那么这四种磁盘格式是什么意思,有哪些优缺点呢?我们应该选择那个呢?下面为大家详细介绍。 在介绍这四种磁盘格式的区别 阅读全文
posted @ 2016-09-16 16:01 blankquiz 阅读(4374) 评论(0) 推荐(0)