█ 0.代码函数: ○ 0.1 边界 Integer.MAX_VALUE int[] preorder ==> preorder == null || preorder.length == 0 char[][] board ==> board == null int[][] matrix ==> ( ...
分类:
其他好文 时间:
2021-04-06 14:10:55
阅读次数:
0
Description: Given a string s and a string array dictionary, return the longest string in the dictionary that can be formed by deleting some of the gi ...
分类:
其他好文 时间:
2021-04-05 12:21:20
阅读次数:
0
题目描述: 找出字符串中最长的回文子串长度 输入输出: Sample Input: Is PAT&TAP symmetric? Sample Output:Sample Output: 11 思路: dp的思想,设字符串str,dp[i][j] = 1 or 0 代表str[i] ~ str[j]间 ...
分类:
其他好文 时间:
2021-03-29 12:51:45
阅读次数:
0
点击进入【数据聚合_数据接口调用_开发者数据API开放平台】(官网) 在pom文件中,加入依赖 ``` <!--返回json数据--> <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> ...
分类:
编程语言 时间:
2021-03-17 14:45:35
阅读次数:
0
一、 计算属性(computed) 1.计算属性是为了模板中的表达式简洁,易维护,符合用于简单运算的设计初衷。 例如: <p id="app">{{ myname.substring(0,1).toUpperCase() + myname.substring(1) }}</p> 运算过于复杂,冗长, ...
分类:
其他好文 时间:
2021-03-06 14:39:38
阅读次数:
0
private void button2_Click(object sender, EventArgs e) { foreach (Control cur in Controls) { if (cur is TextBox ) { string name = cur.Name; cur.Text = ...
<script>function getQueryVariable(variable) { var query = window.location.search.substring(1); var vars = query.split("&"); for (var i=0;i<vars.length ...
分类:
Web程序 时间:
2021-02-27 13:14:25
阅读次数:
0
1.获取字符串 利用public String substring(int beginIndex)从指定位置开始截取字符串,beginIndex为开始截取的位置。利用public String substring(int beginIndex,int endIndex)可以实现从指定的开始位置截取到 ...
分类:
其他好文 时间:
2021-02-26 13:19:59
阅读次数:
0
题目 要点 其实本题是找所有一个列表中所有元素的公共子集,也就是最小是空集(""),最大是最短元素。那我们则需要比较最小长度的元素和最大长度的元素,看它们有多少相同。 解题 class Solution: def longestCommonPrefix(self, strs: List[str]) ...
分类:
其他好文 时间:
2021-02-25 12:22:33
阅读次数:
0
使用到的函数 CONCAT(str1,str2):字符连接函数 UPPER(str):将字符串改为大写字母 LOWER(str):将字符串改为小写字母 LENGTH(str):判定字符串长度 SUBSTRING(str,a,b):提取字段中的一段,从字符串str的第a位开始提取,提取b个字符 LEF ...
分类:
数据库 时间:
2021-02-20 12:11:20
阅读次数:
0