1、mockjs :前端模拟后端数据插件 npm i mockjs --save 2、md5 :前端进行md5加密插件 npm i md5 --save 3、js-cookie :前端进行cookie设置插件 npm i js-cookie --save 4、count-up :前端数据累加的动效 ...
分类:
Web程序 时间:
2019-12-08 10:30:11
阅读次数:
100
There is a ball in a maze with empty spaces and walls. The ball can go through empty spaces by rolling up, down, left or right, but it won't stop roll ...
分类:
其他好文 时间:
2019-12-08 10:24:10
阅读次数:
84
1 # Author:Winter Liu 2 import xlrd 3 import xlsxwriter 4 import os 5 6 # 获取文件目录 7 file_list = os.listdir("C:\PycharmProjects\python level up\excel_fi ...
分类:
其他好文 时间:
2019-12-07 19:39:43
阅读次数:
321
What exactly is Machine Learning? You must be thinking that wait this doesn’t add up, you were told difficult definitions with heavy technical words. ...
分类:
系统相关 时间:
2019-12-07 17:58:13
阅读次数:
149
链表 节点 Node up; Node down; Object o; 属性Node first; Node last; int size; 方法 add(Object o); remove(int index); get(int index); getNode(int index); isEmpt ...
分类:
编程语言 时间:
2019-12-07 12:31:12
阅读次数:
107
双向链表 public class Node { Object o; Node up; Node down; public Object getO() { return o; } public void setO(Object o) { this.o = o; } public Node getUp ...
分类:
编程语言 时间:
2019-12-07 12:22:02
阅读次数:
62
Reverse a singly linked list. Example: Follow up: A linked list can be reversed either iteratively or recursively. Could you implement both? Approach ...
分类:
其他好文 时间:
2019-12-06 23:28:31
阅读次数:
112
There is a ball in a maze with empty spaces and walls. The ball can go through empty spaces by rolling up, down, left or right, but it won't stop roll ...
分类:
其他好文 时间:
2019-12-06 13:57:19
阅读次数:
102
Lebesgue integration and Reimann integration: Reimann: Split up the axis into equal intervals, then approximate the function within each interval, add ...
分类:
移动开发 时间:
2019-12-06 13:37:38
阅读次数:
86
Leha somehow found an array consisting of n integers. Looking at it, he came up with a task. Two players play the game on the array. Players move one ...
分类:
其他好文 时间:
2019-12-06 00:28:45
阅读次数:
94