摘要: s = [[1, 10], [1.2, 11], [2, 5], [5, 15]] data = zip(*s) x_list = data[0] y_list = data[1] x_min = min(x_list) x_max = max(x_list) y_min = min(y_list) y_max = max(y_list) box = [x_min, x_max, y_min, ... 阅读全文
posted @ 2018-09-11 18:23 PLAY_JOY 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 1. 未进行add(想要取消修改) 2.已经add(取消放入本地缓存) 3.已经commit ,但未push到远程仓库 4.删除远程分支 5.遇到线上bug 6.git stash 详解 https://blog.csdn.net/stone_yw/article/details/80795669 阅读全文
posted @ 2018-09-11 12:12 PLAY_JOY 阅读(1160) 评论(0) 推荐(0) 编辑