会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
spyder13
博客园
首页
新随笔
联系
订阅
管理
2017年12月20日
亚马逊AWS服务器下载kaggle竞赛数据
摘要: 第一步 安装kaggle cli 第二步 下载数据 `kg download c 'cifar 10(比赛名称)' u 'username' p 'passwd' f train.7z(要下载的文件)`
阅读全文
posted @ 2017-12-20 11:49 spyder13
阅读(245)
评论(0)
推荐(0)
2017年8月30日
volatile不是线程安全的
摘要: read-update-write并不是线程安全的
阅读全文
posted @ 2017-08-30 21:49 spyder13
阅读(163)
评论(0)
推荐(0)
2017年8月26日
Complex Number Multiplication
摘要: public class ComplexNumberMultiplicationSolution { public static String complexNumberMultiply(String a, String b) { int p1 = Integer.parseInt(a.split("\\+")[0]); int n1 = Integer....
阅读全文
posted @ 2017-08-26 21:30 spyder13
阅读(148)
评论(0)
推荐(0)
2017年3月14日
层序遍历二叉树
摘要: 1 import java.util.LinkedList; 2 import java.util.Queue; 3 4 //public class Btree { 5 // K val; 6 // Btree left; 7 // Btree right; 8 //} 9 10 public class FloorPrint { 11 12 ...
阅读全文
posted @ 2017-03-14 13:38 spyder13
阅读(285)
评论(0)
推荐(0)
链表是否有环,环中有多少节点,环的入口节点
摘要: 1 //public class ListNode { 2 // int val; 3 // ListNode next; 4 //} 5 6 public class ListNodeMeet { 7 8 public static ListNode enterNode(ListNode head){ 9 if...
阅读全文
posted @ 2017-03-14 11:56 spyder13
阅读(167)
评论(0)
推荐(0)
公告