1、mysql的扩展语句
(1)创建表 if not exists yyy:这个表不存在才会创建
zerofill:自动补齐位置
primary key:当前表的主键,主键只能有一个,唯一且不能为空
auto_increment:表示…
生成类注释
Preferences->Editor->File and Code Templates-> Includes ->File Header 注释模板:
/*** Classname ${NAME}* Description ${description}* Date ${DATE} ${TIME}* Created by ZouLiPing*/生成方法和字段注释
查看IDEA自动配置java快捷…
动态规划14:一和零 题目
474. 一和零
给你一个二进制字符串数组 strs 和两个整数 m 和 n 。
请你找出并返回 strs 的最大子集的长度,该子集中 最多 有 m 个 0 和 n 个 1 。
如果 x 的所有元素也是 y 的元素,集合 x 是集合 y 的 子集 。
…
387.字符串中的第一个唯一字符 class Solution {public int firstUniqChar(String s) {Map<Character,Integer> map new HashMap<>();for(int i 0;i<s.length();i){char c s.charAt(i);map.put(c,map.getOrDefault(c,0)1); }for(int i 0;i< s.length();i…