win11新电脑环境安装

新的mini主机到了,为了之后的开发方便,需要先安装各种软件,这里记录下需要安装的软件,我这边是以Java为主 Java 我这边Java下载安装的是17版本的,下载地址:Java Downloads | Oracle,下面是下载页面,根据自己电脑的情况安装不同的版本 maven 我使用的是3.6.3

1686. 石子游戏 VI(2024-02-02)

力扣每日一题 题目:1686. 石子游戏 VI 日期:2024-02-02 用时:15 m 0 s 时间:103ms 内存:57.95MB 代码: class Solution { public int stoneGameVI(int[] aliceValues, int[] bobValu

vue--excel上传

在vue中实现excel上传并显示数据 效果如下: 具体代码如下: <template> <div class="app-container"> <input ref="excel-upload-input" class="excel-uplo

vue 

162. 寻找峰值(2023-12-18)

力扣每日一题 题目:162. 寻找峰值 日期:2023-12-18 用时:10 m 9 s 时间:0 ms 内存:40.54 MB 代码: class Solution { public int findPeakElement(int[] nums) { if(nums.le

2415. 反转二叉树的奇数层(2023-12-15)

力扣每日一题 题目:2415. 反转二叉树的奇数层 日期:2023-12-15 用时:6 m 51 s 时间:0 ms 内存:46.97 MB 代码: /** * Definition for a binary tree node. * public class TreeNode { *

2132. 用邮票贴满网格图(2023-12-14)

力扣每日一题 题目:2132. 用邮票贴满网格图 日期:2023-12-14 用时:38 m 32 s 思路:使用前缀和+差分,只是往常是一维,现在变二维了,原理差不多 时间:22ms 内存:98.24MB 代码: class Solution { public boolean possib

2697. 字典序最小回文串(2023-12-13)

力扣每日一题 题目:2697. 字典序最小回文串 日期:2023-12-13 用时:4 m 53 s 时间:7ms 内存:43.61MB 代码: class Solution { public String makeSmallestPalindrome(String s) {

2454. 下一个更大元素 IV(2023-12-12)

力扣每日一题 题目:2454. 下一个更大元素 IV 日期:2023-12-12 用时:35 m 09 s 时间:614ms 内存:57.18MB 代码: class Solution { public int[] secondGreaterElement(int[] nums) {

沈阳四家万达(2023-12-09、2023-12-10)

全运路万达8枚 铁西万达4枚 北一路万达16枚 太原街万达8枚

盖章 

1466. 重新规划路线(2023-12-07)

力扣每日一题 题目:1466. 重新规划路线 日期:2023-12-07 用时:45 m 36 s 时间:37ms 内存:69.64MB 代码: class Solution { public int minReorder(int n, int[][] connections) {