摘要: https://leetcode.cn/problems/merge-intervals/ 还不会,涉及到集合知识点,见笑了。 阅读全文
posted @ 2022-07-27 14:55 SherryYuan 阅读(15) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/search-insert-position/ class Solution { public int searchInsert(int[] nums, int target) { for(int i=0;i<nums.length;i++) 阅读全文
posted @ 2022-07-27 14:46 SherryYuan 阅读(23) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/find-the-middle-index-in-array/ class Solution { public int pivotIndex(int[] nums) { int sum=0; for(int i=0; i<nums.lengt 阅读全文
posted @ 2022-07-27 10:19 SherryYuan 阅读(16) 评论(0) 推荐(0)
摘要: html代码如下 <center style="color:#C0C0C0;text-decoration:underline">图1.xxx.jpg</center> 阅读全文
posted @ 2022-07-19 14:55 SherryYuan 阅读(1201) 评论(0) 推荐(0)
摘要: 快捷键: fn+F12 打开网页控制台 阅读全文
posted @ 2022-07-09 13:36 SherryYuan 阅读(119) 评论(0) 推荐(0)
摘要: vscode: 首先输入!然后tab键 添加注释,ctrl+/ enter 在此处换行 ctrl+enter 不会把标签的后半部分换到下一行 快捷键:alt+shift+⬇ 复制这一行内容 阅读全文
posted @ 2022-07-09 12:34 SherryYuan 阅读(184) 评论(0) 推荐(0)
摘要: 今天下午回到家打开电脑,打开vscode,在html文件里输入英文的感叹号,再按tab键没有自动产生代码,网上的方法都没有用,最后是这样解决的: 安装了中文插件(便于自己阅览设置) 打开设置, 搜索tab,勾选如图 阅读全文
posted @ 2022-07-08 18:51 SherryYuan 阅读(1221) 评论(0) 推荐(1)
摘要: Typora+图床详解(小白都能学得会) 阅读全文
posted @ 2022-07-07 16:22 SherryYuan 阅读(9) 评论(0) 推荐(0)
摘要: http://t.zoukankan.com/lbys-p-14316888.html Typora+图床详解(小白都能学得会) http://t.zoukankan.com/lbys-p-14316888.html 阅读全文
posted @ 2022-07-07 16:20 SherryYuan 阅读(10) 评论(0) 推荐(0)
摘要: package demo1; import java.util.Arrays; public class TestOpArray { public static void main(String[] args) { //解决数组的长度不可变的问题 int[] arr=new int[] {9,8,7 阅读全文
posted @ 2022-07-06 15:02 SherryYuan 阅读(49) 评论(0) 推荐(0)