摘要: 电脑没声音,原来是系统更新后默认设置变了 阅读全文
posted @ 2022-12-18 07:53 SherryYuan 阅读(53) 评论(0) 推荐(0)
摘要: several example codes about the closure 阅读全文
posted @ 2022-11-06 13:58 SherryYuan 阅读(90) 评论(0) 推荐(0)
摘要: 文件-->偏好设置-->外观-->打开主题文件夹 Newsprint主题: 阅读全文
posted @ 2022-09-04 17:59 SherryYuan 阅读(111) 评论(0) 推荐(0)
摘要: 想搜索国外网站的内容,用Microsoft Bing 国际版 阅读全文
posted @ 2022-08-06 16:32 SherryYuan 阅读(15) 评论(0) 推荐(0)
摘要: https://jingyan.baidu.com/article/7908e85c945c3fee481ad2be.html 阅读全文
posted @ 2022-08-05 12:03 SherryYuan 阅读(22) 评论(0) 推荐(0)
摘要: 1 阅读全文
posted @ 2022-07-28 10:46 SherryYuan 阅读(14) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/diagonal-traverse/ 太难了,再说吧 阅读全文
posted @ 2022-07-28 10:42 SherryYuan 阅读(9) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/zero-matrix-lcci/ class Solution { public void setZeroes(int[][] matrix) { int M=matrix.length; //获取二维数组中一维数组的长度 int N=ma 阅读全文
posted @ 2022-07-28 09:17 SherryYuan 阅读(19) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/xqe777/article/details/123964027 阅读全文
posted @ 2022-07-28 08:52 SherryYuan 阅读(19) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/rotate-image/ class Solution { public void rotate(int[][] matrix) { int len=matrix.length; int[][] newMat=new int[len][le 阅读全文
posted @ 2022-07-28 08:51 SherryYuan 阅读(27) 评论(0) 推荐(0)