码迷,mamicode.com
首页 >  
搜索关键字:solution upgrade    ( 13024个结果
nodejs console输出到文件
var fs = require('fs') var util = require('util') var logPath = 'upgrade.log' var logFile = fs.createWriteStream(logPath, { flags: 'a' }) console.log ...
分类:Web程序   时间:2021-06-16 18:20:32    阅读次数:0
error: manifest missing or unreadable -- please run init
error: manifest missing or unreadable -- please run init due to i made a mistake by deleting .git of kernel , i need recover it . so i found solution ...
分类:其他好文   时间:2021-06-16 18:11:46    阅读次数:0
[LeetCode] 278. 第一个错误的版本
二分寻找边界 public class Solution extends VersionControl { public int firstBadVersion(int n) { int i = 1; int j = n; while (i<=j) { int mid = i + ((j-i)>>1 ...
分类:其他好文   时间:2021-06-15 18:12:30    阅读次数:0
每日LeetCode - 125. 验证回文串(Python 3)
Python3 双指针 class Solution: def isPalindrome(self, s: str) -> bool: n = len(s) left, right = 0, n - 1 while left < right: while left < right and not s ...
分类:编程语言   时间:2021-06-13 10:55:47    阅读次数:0
leetcode-python-汉明距离
1)取异或,然后计算1的个数 class Solution: def hammingDistance(self, x: int, y: int) -> int: t = x^y count = 0 while t: count += 1 t = t& t-1 return count ...
分类:编程语言   时间:2021-06-11 19:07:12    阅读次数:0
48. Rotate Image
leetcode链接 题目 给定一个 n × n 的二维矩阵 matrix 表示一个图像。请你将图像顺时针旋转 90 度。 你必须在 原地 旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要 使用另一个矩阵来旋转图像。 代码 class Solution { public: void rotat ...
分类:其他好文   时间:2021-06-11 18:46:36    阅读次数:0
【题解】[JOISC2020] 星座 3
近期做的最好的贪心题之一。 翻了一下官方题解貌似是转化为树上问题然后线段树维护,可能出题人想少了没有想到贪心写法。懂日语的小伙伴可以研究一下Solution 。 第一步不难想到对于所有的星星按 \(Y\) 从小到大排序,这样限制条件转化为选了一颗星星后,接下来不能选择一个区间内的星星。 那么对于当前 ...
分类:其他好文   时间:2021-06-10 17:59:31    阅读次数:0
《从头再来》剑指offer.50 第一个只出现一次的字符
在字符串 s 中找出第一个只出现一次的字符。如果没有,返回一个单空格。 s 只包含小写字母。 很简单,直接遍历字符串,将每一个字符加入哈希表中,然后再遍历字符串,找到哈希表中那个值为1的字符返回即可。 class Solution { public: char firstUniqChar(strin ...
分类:其他好文   时间:2021-06-10 17:58:27    阅读次数:0
kali2020.4安装openvas(gvm)
记录一下,方便复习 1、更换kali源,默认源注释掉。 sudo vim /etc/apt/sources.list #中科大 deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contrib deb-src http:// ...
分类:其他好文   时间:2021-06-10 17:55:25    阅读次数:0
leetcode-python-FizzBuzz
?这是啥算法题。。 逐个判断写个循环即可 class Solution: def fizzBuzz(self, n: int) -> List[str]: result = [] for i in range(1,n+1): if i % 3 == 0 and i % 5 == 0 : result ...
分类:编程语言   时间:2021-06-10 17:39:18    阅读次数:0
13024条   上一页 1 2 3 4 5 6 ... 1303 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!