C
Juffi
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
my leetcode#1 #2 #3 #4 #6 #7 #8
#1 Two Sum.cpp #include #include #include using namespace std; class Solution { public: Solution(){ cout vector twoSum(vector& nums, int target) { int index1 = 0; int index2 = 0; ve原创 2016-01-05 16:18:26 · 666 阅读 · 0 评论 -
my leetcode#13 #14
#13 Roman to Integer #include #include #include int getIndex(char roman[], char x){ int i = 0; int index = 0; int len = strlen(roman); while(i if(x == roman[i]){ index = i; break;原创 2016-01-06 10:59:41 · 430 阅读 · 0 评论 -
NetBeans运行error: bin/nativeexecution/Linux-x86_64/pty
问题: Linux上的NetBeans,编译没有问题,运行时出现error: MissingResourceException: bin/nativeexecution/Linux-x86_64/pty 解决方法: 帮助(help)--->检查更新(check for update)--->重启(restart NetBeans)。 即可原创 2016-08-09 10:18:58 · 418 阅读 · 0 评论 -
Debug NetBeans: Resolve Missing Debugger Command
问题: Debug NetBeans时,无法Debug,无法点击OK。如上所示 解决方法: 安装gdb。apt-get install gdb原创 2016-08-09 11:06:03 · 1226 阅读 · 0 评论
分享