本文分类:news发布日期:2024/12/22 9:05:23
相关文章
Golang | Leetcode Golang题解之第309题买卖股票的最佳时机含冷冻期
题目: 题解:
func maxProfit(prices []int) int {if len(prices) 0 {return 0}n : len(prices)f0, f1, f2 : -prices[0], 0, 0for i : 1; i < n; i {newf0 : max(f0, f2 - prices[i])newf1 : f0 prices[i]newf2 : max(f1, f2)f0, f1, f2 newf0, n…
建站知识
2024/12/22 9:01:43
vue3 使用腾讯IM
参考文档:PC端VUE3腾讯IM 我使用的是vue3vitejs
引入ts,因为TUIKit 仅支持 ts 环境运行
npm install -D typescript下载TUIKit 组件
npm i tencentcloud/chat-uikit-vuexcopy .\node_modules\tencentcloud\chat-uikit-vue .\src\TUIKit /i /e /exclud…
建站知识
2024/12/8 20:03:23
Android 系统架构
Android 框架(Android Framework)是 Android 操作系统的核心部分之一,它提供了一组 API,开发者可以使用这些 API 来构建应用程序。Android 框架处于 Android 系统架构的中间层,位于应用层和操作系统核心层之间。
Andr…
建站知识
2024/11/22 0:27:06
async和 await
async和 await
总结一句话,async 内部的await同步进行,但是async外部是异步的。
一个例子即可解释
// 1s 之后返回2倍的值
function timeout (num) {return new Promise((resolve, reject) > {setTimeout(() > {resolve(num * 2)}, 1000)})}asy…
建站知识
2024/11/29 3:39:28
PyCharm添加自动函数文档注释
开启PyCharm自动函数文档注释
开启步骤:File -> Settings -> Tools -> Python Integrated Tools -> Docstrings -> Docstring format Docstring format包括五种风格:Plain(默认)、Epytext、reStructuredText、Num…
建站知识
2024/11/22 14:02:44
JS等待所有方法执行完成在执行下一个方法,promise All
在工作中会遇到这样一个场景,前端需要拿到不同接口返回的结果在执行某个逻辑,当使用链式那样的方式去请求,等一个接口响应完在请求下一个接口,这种方法就会导致请求时间特别长。这个时候就可以使用promise all,同时请求…
建站知识
2024/12/4 3:50:59