Description Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. For example, two is written as II in Roman numeral, jus ...
分类:
其他好文 时间:
2020-02-20 09:28:12
阅读次数:
79
For example, we have the source code: getVersison('3.4.5') function getVersion(versionString) { const versionRegex = /(\d)\.(\d)\.(\d+)/ const [, majo ...
分类:
其他好文 时间:
2020-02-19 21:14:01
阅读次数:
75
1 """ 2 Given a string, find the length of the longest substring without repeating characters. 3 Example 1: 4 Input: "abcabcbb" 5 Output: 3 6 Explanat ...
分类:
其他好文 时间:
2020-02-19 21:02:41
阅读次数:
53
一、pycharm 从git拉取代码 1、 2、 二、执行manage.py 1、pycharm路径 2、创建项目 startapp +项目名称 例如:startapp sksystem3、为新创建的项目新增urls.pyearth/urls.py 增加路径 或者这样修改,将不用的example去除 ...
分类:
其他好文 时间:
2020-02-19 19:13:10
阅读次数:
79
Given two strings a and b we define a*b to be their concatenation. For example, if a = "abc" and b = "def" then a*b = "abcdef". If we think of concate ...
分类:
编程语言 时间:
2020-02-18 16:33:41
阅读次数:
88
PAT 甲级 Advanced 1053 Path of Equal Weight (30) [树的遍历] ...
分类:
其他好文 时间:
2020-02-18 14:44:14
阅读次数:
80
vue中加载three.js的gltf模型 一、开始引入three.js相关插件。首先利用淘宝镜像,操作命令为: cnpm install three //npm install three也行 二、three.js中所有的控件插件,都可以在node_modules下面的three里面找到 三、安装 ...
分类:
Web程序 时间:
2020-02-18 14:38:06
阅读次数:
517
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree [1,2,2,3,4,4,3] is symmet ...
分类:
其他好文 时间:
2020-02-17 23:52:41
阅读次数:
90
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at any p ...
分类:
其他好文 时间:
2020-02-17 22:33:36
阅读次数:
99
Given a collection of intervals, merge all overlapping intervals. Example 1: Input: [[1,3],[2,6],[8,10],[15,18]] Output: [[1,6],[8,10],[15,18]] Explan ...
分类:
其他好文 时间:
2020-02-17 22:31:56
阅读次数:
92