上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 45 下一页
摘要: 面试题:64匹马,8个赛道,最少跑几次可以找出前四名? 一、常规非最优解法 均分比赛,高度为4的二叉树。 次数为8+4+2+1=15 二、最优解 综上,最少10次,最多11次。 阅读全文
posted @ 2024-08-11 23:15 Gold_stein 阅读(165) 评论(0) 推荐(0)
摘要: github PR简单使用tips 只有你拥有权限的仓库,在创建PR的时候才可以编辑labels,reviewer等。 阅读全文
posted @ 2024-08-07 22:03 Gold_stein 阅读(21) 评论(0) 推荐(0)
摘要: leetcode 4.Median of two sorted arrays 解法1:双指针合并序列(O(m+n)) 最朴素的做法,可以做一点点小小的优化: 我们不需要记录合并后的数组,只需要用一个变量记录当前的下标位置即可,执行到中间时直接return即可。 但是因为太久没有写算法题,在一些边界问 阅读全文
posted @ 2024-08-06 23:22 Gold_stein 阅读(22) 评论(0) 推荐(0)
摘要: display - How is my cursor whiter than white? - Super User display calibration - How to apply color management to the Windows 7 mouse cursor? - Photog 阅读全文
posted @ 2024-08-05 01:45 Gold_stein 阅读(70) 评论(0) 推荐(0)
摘要: Manjaro虚拟机安装Miniconda(anaconda)并配置 1.安装miniconda yay -Sy miniconda3 2.初次运行时,遇到了openSSL版本和miniconda的兼容问题,按照miniconda输出的报错内容,让cryptography 库在没有遗留算法的情况下运 阅读全文
posted @ 2024-08-04 21:26 Gold_stein 阅读(206) 评论(0) 推荐(0)
摘要: vmware设置共享文件夹,并保持为开机自动挂载 设置共享文件夹 直接通过界面按钮设置即可。 首次挂载 1.创建目录 sudo mkdir -p /mnt/hgfs 2.编辑 /etc/fstab 文件 .host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other,d 阅读全文
posted @ 2024-08-04 02:08 Gold_stein 阅读(2075) 评论(0) 推荐(0)
摘要: Manjaro重新安装vmwaretools,vmware“重新安装vmwaretools”按钮为灰色 Manjaro重新安装vmwaretools 先卸载原来的版本,然后可以通过git库安装,也可以通过vmware软件提供的按钮安装。 vmware“重新安装vmwaretools”按钮为灰色 解决 阅读全文
posted @ 2024-08-04 01:47 Gold_stein 阅读(139) 评论(0) 推荐(0)
摘要: VMware虚拟机 Linux配置一切正常 但依然不能上网 最近因为装了Linux真机,很久没有使用VMware,今天装了manjaro虚拟机体验体验,像往常一样配置好了静态IP,却发现无论如何都不能上网。 排查后,发现ip a命令会输出下面的信息: 2: ens33: <NO-CARRIER,BR 阅读全文
posted @ 2024-08-01 23:03 Gold_stein 阅读(217) 评论(0) 推荐(0)
摘要: 在继承时加入的关键字,可以修饰继承来的类成员 这里的func1()和func2()都是proteced,不能在类外部访问 这里的func1()是public,但是func2()依然是protected 阅读全文
posted @ 2024-07-29 00:13 Gold_stein 阅读(11) 评论(0) 推荐(0)
摘要: Windows git无法与github通信 问题 昨晚深夜遇到的问题,因为急着睡觉,没有记录具体的报错信息。具体表现为:git 命令无法和github.com通信,但是github desktop就可以;clash无论是直连,规则,还是全局都没有用最后的解决方法:用git config 命令清空当 阅读全文
posted @ 2024-07-28 00:45 Gold_stein 阅读(42) 评论(0) 推荐(0)
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 45 下一页