自动保存去掉分号参考链接 方法与括号直接加空格:文件-->首选项-->设置--> 搜索 setting 在最后加上这个 "vetur.format.defaultFormatter.js": "vscode-typescript", "javascript.format.insertSpaceBef ...
分类:
其他好文 时间:
2021-01-20 12:01:59
阅读次数:
0
题目链接:https://leetcode-cn.com/problems/longest-increasing-subsequence 题目描述: 给你一个整数数组 nums ,找到其中最长严格递增子序列的长度。 子序列是由数组派生而来的序列,删除(或不删除)数组中的元素而不改变其余元素的顺序。例 ...
分类:
其他好文 时间:
2021-01-18 11:27:57
阅读次数:
0
Given a string , determine if it is?valid. A string is?valid?if, starting with an empty string , you can?transform into after performing the following ...
分类:
其他好文 时间:
2021-01-18 11:15:29
阅读次数:
0
##ImportError: attempted relative import with no known parent package ImportError: attempted relative import with no known parent package 截图: 或许是因为同文件 ...
分类:
其他好文 时间:
2021-01-15 11:43:37
阅读次数:
0
DIV水平垂直居中 div { width: 100px; height: 100px; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto;} 父级控制子集居中(弹性布局).parent { display: ...
分类:
Web程序 时间:
2021-01-15 11:40:06
阅读次数:
0
1 元素的显示与隐藏 1.1 display(使用较多,配合js做特效,比如下拉菜单,原先没有,鼠标经过,显示下拉菜单,应用广泛) display:none 隐藏(先隐藏元素,不保留位置) dispaly:block 除了转换成块级元素以外,还可以显示元素。 1.2 visibility visib ...
分类:
Web程序 时间:
2021-01-13 10:48:30
阅读次数:
0
题目:https://leetcode-cn.com/problems/longest-palindromic-substring/ 给定一个字符串 s,找到 s 中最长的回文子串。你可以假设 s 的最大长度为 1000 我的是暴力解法,最终勉强通过了第一次答案: 通过遍历从头到尾的所有字符串来比较 ...
分类:
其他好文 时间:
2021-01-06 12:31:44
阅读次数:
0
问题: 给定一个计量括号数量的数字n,求所有的括号组合可能序列。 Example 1: Input: n = 3 Output: ["((()))","(()())","(())()","()(())","()()()"] Example 2: Input: n = 1 Output: ["()"] ...
分类:
其他好文 时间:
2021-01-05 11:32:45
阅读次数:
0
connect by 是结构化查询中用到的,其基本语法是: 1 select … from tablename 2 start with 条件1 3 connect by 条件2 4 where 条件3; 例: 1 select * from table 2 start with org_id = ...
分类:
数据库 时间:
2021-01-05 11:17:50
阅读次数:
0
a、基本选择器:#id,class,element,*; b、层次选择器:parent > child,prev + next ,prev ~ siblings c、基本过滤器选择器::first,:last ,:not ,:even ,:odd ,:eq ,:gt ,:lt d、表单选择器: :i ...
分类:
Web程序 时间:
2021-01-04 11:10:04
阅读次数:
0