
python
文章平均质量分 60
weixin_42470012
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
实验室新电脑ubuntu16.04安装记录
Turn off secure boot mode forever Turn on UEFI Press e when entering installing interface and then input quiet splash acpi=off acpi=on nomodeset And then press F10 to boot. How to disable the acpi = off forever sudo gedit /etc/default/grub Change line GRU原创 2021-07-26 06:46:28 · 172 阅读 · 0 评论 -
useful link for compiling segmap
https://www.cnblogs.com/chenlinchong/p/12576699.html https://blog.youkuaiyun.com/weixin_42606990/article/details/109738833 https://github.com/ethz-asl/segmap/issues/154原创 2020-12-04 11:51:07 · 184 阅读 · 0 评论 -
可视化dot文件
dot -Tpdf grid_best.dot -o grid_best.pdf原创 2020-10-21 00:16:11 · 1389 阅读 · 0 评论 -
4. Median of Two Sorted Arrays
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)). You may assume nums1 and nums2 cannot be both empty. Example 1: nums1 = [1, 3] nums2原创 2020-08-17 06:16:22 · 138 阅读 · 0 评论