- 博客(9)
- 收藏
- 关注
原创 新版本微信PC端小程序打不开 一直加载 白屏等问题及解决方案
在意见反馈 (3.7.0以上微信在搜索栏输入:showcmdwnd ,包括前面冒号) 中切回xweb
2022-06-17 16:56:25 30509 30
原创 python输出对不齐
python输出对不齐字符宽度有问题https://blog.csdn.net/JxufeCarol/article/details/104571454/
2022-01-07 16:25:43 959
原创 若依导入数据脚本ry_2021xxxx.sql,quartz.sql时出错
若依导入数据脚本ry_2021xxxx.sql,quartz.sql时出错 解决方法: 创建数据库时,将字符编码改为 UTF-8
2021-11-19 16:14:49 3096 1
原创 leetcode 495. 提莫攻击
leetcode 495. 提莫攻击 class Solution { public int findPoisonedDuration(int[] timeSeries, int duration) { int seconds=duration; for(int i=0 ; i<timeSeries.length-1 ; i++){ if(timeSeries[i+1]-timeSeries[i]<du
2021-11-10 08:31:56 4512
原创 leetcode 121. the best time to buy stock
leetcode 121. 买卖股票的最佳时机 思路:从后向前遍历,将数据分为不同的区间,计算区间的差值 class Solution { public int maxProfit(int[] prices) { int high; int profit=0; high=prices[prices.length-1]; for(int i=prices.length-2;i>=0;i--
2021-11-08 16:39:51 2996
原创 leetcode 292. Nim 游戏
leetcode 292. Nim 游戏 当有5颗石子时,只需拿1颗就可让对面成4颗石子(输)当有6颗石子时,只需拿2颗就可让对面成4颗石子(输)当有7颗石子时,只需拿3颗就可让对面成4颗石子(输)当有8颗石子时,给对面剩几颗(拿几颗)都不能让对面输… … 123456789101112√√√×√√√×√√√× class Solution { public boole
2021-11-08 15:57:46 5654
原创 leetcode 299. 猜数字游戏
leetcode 299. 猜数字游戏 1.hashclass Solution { public String getHint(String secret, String guess) { char[] s1=new char[secret.length()]; char[] g1=new char[guess.length()]; int a=0; int b=0; s1=secret.toCha
2021-11-08 15:26:22 4951
原创 Markdown学习
Markdown学习标题三级标题四级标题字体Hello,World!Hello,World!Hello,World!Hello,World!引用选择狂神说Java,走向人生巅峰分割线图片超链接点击跳转到狂神学习视频列表ACABC表格名字性别生日张三男1997.1.1代码public...
2021-08-16 14:13:23 74
原创 LeetCode C语言“AddressSanitizer: heap-buffer-overflow on address...”
LeetCode中“AddressSanitizer: heap-buffer-overflow on address…”的错误解决遇到的问题使用了malloc但没初始化解决办法改用calloc(size,sizeof())
2021-01-21 14:16:40 570
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人