上一页 1 2 3 4 5 6 7 ··· 23 下一页
摘要: 1. 显示.git目录:$ defaults write com.apple.finder AppleShowAllFiles TRUE 2. 隐藏.git目录:$ defaults write com.apple.finder AppleShowAllFiles FALSE 3. 重启Finder 阅读全文
posted @ 2021-09-10 16:21 三一一一317 阅读(172) 评论(0) 推荐(0)
摘要: 链接: https://www.nowcoder.com/test/question/908255677b6f4c18a9074c12f21acd59?pid=28083344&tid=47458050 现在有n个物品,每一个物品都有一个价值,现在想将这些物品分给两个人,要求这两个人每一个人分到的物 阅读全文
posted @ 2021-09-05 21:40 三一一一317 阅读(139) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/mengyujia1234/article/details/90179896 阅读全文
posted @ 2021-09-05 17:27 三一一一317 阅读(16) 评论(0) 推荐(0)
摘要: https://www.nowcoder.com/discuss/711798?source_id=profile_reply_nctrack&channel=-1 阅读全文
posted @ 2021-08-31 21:24 三一一一317 阅读(83) 评论(0) 推荐(0)
摘要: 题目大意:给你一系列任务的完成时间及其前置依赖,任务可以并行,求完成所有任务的最短时间 输入: 第一行一个数n代表有n个任务,接下来n行代表每个任务的信息 当没有前置依赖的时候,这一行为-1 t,t代表完成时间 当有前置依赖的时候,前置依赖间用逗号隔开,1,2 t,t代表完成时间 Java spli 阅读全文
posted @ 2021-08-31 21:23 三一一一317 阅读(236) 评论(0) 推荐(0)
摘要: 题目大意: 给你一个矩阵代表一个闯关方格,英雄最开始在(0,0)处,移动一次耗费1s,闯关方格上的数字代表着倒计时,每过一秒减一,当减到0时该格子无法通过,求到右下角的最短时间 BFS搜索加剪枝即可 作者:相依相随 链接:https://www.nowcoder.com/discuss/719729 阅读全文
posted @ 2021-08-31 21:22 三一一一317 阅读(187) 评论(0) 推荐(0)
摘要: 恢复内容开始 null 恢复内容结束 阅读全文
posted @ 2021-08-31 20:32 三一一一317 阅读(164) 评论(0) 推荐(0)
摘要: 参考: https://www.cnblogs.com/fanguangdexiaoyuer/p/11281179.html class Solution { public: /** * longest common substring * @param str1 string字符串 the str 阅读全文
posted @ 2021-08-29 16:46 三一一一317 阅读(55) 评论(0) 推荐(0)
摘要: 自动驾驶技术部_视觉3D算法工程师 所属部门: 百度 工作地点: 北京市 招聘人数: 若干 公 司: 百度 职位类别: 技术 发布时间: 2020-10-27 工作职责: -开展国际领先的计算机3D视觉算法研发 -实现可靠稳定的软件和硬件系统 -对接客户需求实现产品落地 职责要求: -具有扎实的数学 阅读全文
posted @ 2021-08-22 21:00 三一一一317 阅读(668) 评论(0) 推荐(0)
摘要: 此题属于固定题,没法扩展。 class Solution { public: vector<int> findDiagonalOrder(vector<vector<int>>& mat) { int m = mat.size(); if (m == 0) return {}; int n = ma 阅读全文
posted @ 2021-08-19 15:17 三一一一317 阅读(48) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 23 下一页