摘要:
Write a class RecentCounter to count recent requests. It has only one method: ping(int t), where t represents some time in milliseconds. Return the nu 阅读全文
摘要:
Given a square array of integers A, we want the minimum sum of a falling path through A. A falling path starts at any element in the first row, and ch 阅读全文
摘要:
In an array A of 0s and 1s, how many non-empty subarrays have sum S? Example 1: Note: 通用解法就是求连续数组的和有多少个,这种题代码都不会变的 把和存起来,给后面的数字-S看有没有这个和,有的话加起来,然后a[an 阅读全文
摘要:
Every email consists of a local name and a domain name, separated by the @ sign. For example, in alice@leetcode.com, alice is the local name, and leet 阅读全文
摘要:
开头卖萌求点击 https://www.yinghualuowu.com/ Http和Https的区别 就是多了s的区别(不是),简单点就是比http更安全了。23333。这里不打算说的太详细,知道前面说的这点就可以了。 获取SSL证书 我的服务器是阿里云的,所以去阿里云申请一个免费的就好了~ 然后 阅读全文
摘要:
可能在以下链接也能看到这篇文档 我知道很多人都不知道这个到底叫啥,还不如直接一点: 文件标题栏 就是如下的效果。 解决办法: 在左上角第三个view下,打开后取消Hide editor tabs 选项的勾选。 我记得还有其他办法来着,忘记了 阅读全文
摘要:
要知道B站的弹幕位置 如果只考虑视频,B站的链接格式为:https://www.bilibili.com/video/av34042815。把av后面的数字看做是唯一标记即可。 既然能够把弹幕加载出来,那说明一定有相关的弹幕接口。这个时候需要万能的F12了~~ 于是就发现了这样一个链接:https: 阅读全文
摘要:
先说概念 开发机:将编译好的程序部署到目标机器上执行。配置 VS 工程,建立与目标机的连接,开始远程调试。 目标机:负责执行目标程序。安装和运行远程工具 (Remote Debugger),等待来自开发机的连接请求。 环境要求 目标机和开发机必须通过网络、工作组、家庭组连接,或者通过网线直连。即可以 阅读全文
摘要:
需要知道以下的知识 正规的骚操作:https://stackoverflow.com/questions/4238345/asynchronously-wait-for-taskt-to-complete-with-timeout 参考资料:https://walterlv.com/post/tas 阅读全文
摘要:
假设我们有以下布局 <Grid x:Name="Grid" ShowGridLines="True"> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition /> <RowDefinition /> <RowDefinition /> <Row 阅读全文