摘要: excel启动时显示“操作系统当前的配置不能运行此应用程序”程序:Office16版中的excel程序 故障描述excel启动时显示“操作系统当前的配置不能运行此应用程序”如果你也是因为更改安装路径导致的该问题,这个解决方法很有可能能帮助到你,接下来来做一个小的步骤以确认你碰见的问题与我所遇见的故障 阅读全文
posted @ 2022-06-04 12:17 ka2uha 阅读(5006) 评论(2) 推荐(2)
摘要: 描述 请实现一个函数,将一个字符串s中的每个空格替换成“%20”。 例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。 数据范围:0≤len(s)≤1000 0 \le len(s) \le 1000 \ 0≤len(s)≤1000 。保证字符串中的 阅读全文
posted @ 2022-05-19 22:46 ka2uha 阅读(53) 评论(0) 推荐(0)
摘要: GitHub clone 或者 push 的时候:报以下两种错:fatal: unable to access ‘https://github.com/…/…git/’: Failed to connect to 127.0.0.1 port 1080: Connection refusedfata 阅读全文
posted @ 2022-05-10 10:21 ka2uha 阅读(8970) 评论(0) 推荐(1)
摘要: 最小路径和 给定一个包含非负整数的 m x n 网格 grid ,请找出一条从左上角到右下角的路径,使得路径上的数字总和为最小。 说明:每次只能向下或者向右移动一步。 示例 1: 输入:grid = [[1,3,1],[1,5,1],[4,2,1]] 输出:7 解释:因为路径 1→3→1→1→1 的 阅读全文
posted @ 2022-04-30 11:58 ka2uha 阅读(107) 评论(0) 推荐(0)
摘要: 卷积层feature map大小计算: 卷积层输出feature map大小计算公式: (一般向下取整)。 普通卷积层参数计算: 卷积层参数由Filter计算,参数量=(filter size * 前一层特征图的通道数 )* 当前层filter数量 VGG-16为例,Conv1-1,输入 ,64个 阅读全文
posted @ 2022-04-26 11:26 ka2uha 阅读(801) 评论(0) 推荐(0)
摘要: 以图的形式分组,connet all the object that belong to the same group with an edge like so: We need to find a way to determine which group implement: Find: 走到pa 阅读全文
posted @ 2022-04-18 19:55 ka2uha 阅读(49) 评论(0) 推荐(0)
摘要: (更新)注意通过msys2下载MinGW后在debug的时候可能会有各种问题,目前推荐直接下载MinGW,具体教程可以看youtube ProgrammingKnowledge的channel,油管上看了一圈感觉是最详细全面且最新的了,阿b上也有人搬运了这个视频 见本文底部,视频里包括了debug的 阅读全文
posted @ 2022-04-17 19:32 ka2uha 阅读(2459) 评论(0) 推荐(0)
摘要: >> Intro > 介绍 Binary Search is quite easy to understand conceptually. Basically, it splits the search space into two halves and only keep the half tha 阅读全文
posted @ 2022-04-13 16:12 ka2uha 阅读(83) 评论(0) 推荐(0)
摘要: There is an undirected graph with n nodes, where each node is numbered between 0 and n - 1. You are given a 2D array graph, where graph[u] is an array 阅读全文
posted @ 2022-04-10 19:58 ka2uha 阅读(36) 评论(0) 推荐(0)
摘要: If there is one tower then Player 1 always wins by simply removing everything and leaveing just 1. But if there are two towers then second player can 阅读全文
posted @ 2022-04-10 00:04 ka2uha 阅读(217) 评论(0) 推荐(0)