上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 57 下一页
摘要: 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 阅读全文
posted @ 2018-11-04 15:13 樱花落舞 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2018-10-28 12:40 樱花落舞 阅读(144) 评论(0) 推荐(0) 编辑
摘要: In an array A of 0s and 1s, how many non-empty subarrays have sum S? Example 1: Note: 通用解法就是求连续数组的和有多少个,这种题代码都不会变的 把和存起来,给后面的数字-S看有没有这个和,有的话加起来,然后a[an 阅读全文
posted @ 2018-10-28 12:36 樱花落舞 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2018-10-28 12:33 樱花落舞 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 开头卖萌求点击 https://www.yinghualuowu.com/ Http和Https的区别 就是多了s的区别(不是),简单点就是比http更安全了。23333。这里不打算说的太详细,知道前面说的这点就可以了。 获取SSL证书 我的服务器是阿里云的,所以去阿里云申请一个免费的就好了~ 然后 阅读全文
posted @ 2018-10-26 23:18 樱花落舞 阅读(1136) 评论(0) 推荐(0) 编辑
摘要: 可能在以下链接也能看到这篇文档 我知道很多人都不知道这个到底叫啥,还不如直接一点: 文件标题栏 就是如下的效果。 解决办法: 在左上角第三个view下,打开后取消Hide editor tabs 选项的勾选。 我记得还有其他办法来着,忘记了 阅读全文
posted @ 2018-10-26 20:37 樱花落舞 阅读(1292) 评论(0) 推荐(0) 编辑
摘要: 要知道B站的弹幕位置 如果只考虑视频,B站的链接格式为:https://www.bilibili.com/video/av34042815。把av后面的数字看做是唯一标记即可。 既然能够把弹幕加载出来,那说明一定有相关的弹幕接口。这个时候需要万能的F12了~~ 于是就发现了这样一个链接:https: 阅读全文
posted @ 2018-10-26 15:21 樱花落舞 阅读(2647) 评论(2) 推荐(0) 编辑
摘要: 先说概念 开发机:将编译好的程序部署到目标机器上执行。配置 VS 工程,建立与目标机的连接,开始远程调试。 目标机:负责执行目标程序。安装和运行远程工具 (Remote Debugger),等待来自开发机的连接请求。 环境要求 目标机和开发机必须通过网络、工作组、家庭组连接,或者通过网线直连。即可以 阅读全文
posted @ 2018-10-25 14:23 樱花落舞 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 需要知道以下的知识 正规的骚操作:https://stackoverflow.com/questions/4238345/asynchronously-wait-for-taskt-to-complete-with-timeout 参考资料:https://walterlv.com/post/tas 阅读全文
posted @ 2018-10-25 09:54 樱花落舞 阅读(6647) 评论(0) 推荐(1) 编辑
摘要: 假设我们有以下布局 <Grid x:Name="Grid" ShowGridLines="True"> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition /> <RowDefinition /> <RowDefinition /> <Row 阅读全文
posted @ 2018-10-15 10:08 樱花落舞 阅读(2010) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 57 下一页