摘要: 第一步 安装kaggle cli 第二步 下载数据 `kg download c 'cifar 10(比赛名称)' u 'username' p 'passwd' f train.7z(要下载的文件)` 阅读全文
posted @ 2017-12-20 11:49 spyder13 阅读(245) 评论(0) 推荐(0)
摘要: read-update-write并不是线程安全的 阅读全文
posted @ 2017-08-30 21:49 spyder13 阅读(163) 评论(0) 推荐(0)
摘要: 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)
摘要: 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)