码迷,mamicode.com
首页 >  
搜索关键字:find the most comfor    ( 27780个结果
LINUX-shell&find 指令
1、编写脚本 createuser.sh,实现如下功能:使用一个用户名作为参数,如果 指定参数的用户存在,就显示其存在,否则添加之;显示添加的用户的id号等信息 read -p " input the user: " USER if id $USER &> /dev/null ; then echo ...
分类:系统相关   时间:2021-04-20 14:31:15    阅读次数:0
Mybatis 报错 java.io.IOException: Could not find resource mybatis-config.xml
今天就遇到了一个问题找了挺长时间的错才运行的通,错误是这样的,使用mybatis要先进性配置,新建了一个mybatis-config.xml文件,文件内容检查了几遍是没有问题的,但是在运行的时候却一直报错:java.io.IOException: Could not find resource my ...
分类:编程语言   时间:2021-04-20 14:27:57    阅读次数:0
Leecode——2021.04.17
滑动窗口 219. 存在重复元素 II 给定一个整数数组和一个整数 k,判断数组中是否存在两个不同的索引 i 和 j,使得 nums [i] = nums [j],并且 i 和 j 的差的 绝对值 至多为 k。 // 滑动窗口做法 class Solution { public boolean co ...
分类:其他好文   时间:2021-04-19 15:40:01    阅读次数:0
查看电脑指定端口的占用情况
首先利用快捷键win+r打开运行窗口,输入cmd,回车 1、在命令窗口中输入: netstat -an 可以查看当前所有已被占用的端口号 本地地址(Local Addresss)对应的这列,“:”后边即为以开放的端口号。 2、如果需要指定端口号查看,可以输入: netstat -ano|find " ...
分类:其他好文   时间:2021-04-16 12:26:12    阅读次数:0
295. Find Median from Data Stream
问题: 设计结构体,能够满足以下两个功能: 向结构体中插入数据 void addNum(int num) 去当前结构体中的中位数 double findMedian() 若共有奇数个数,取最中间的数 若共有偶数个数,取中间两个数之和/2 Example 1: Input ["MedianFinder ...
分类:其他好文   时间:2021-04-16 11:45:21    阅读次数:0
02.ElementUI源码学习:babel配置
书接上文,接下来项目将引入babel支持ES6+语法兼容。 Babel 是一个工具链,主要用于将 ECMAScript 2015+ 版本的代码转换为向后兼容的 JavaScript 语法,以便能够运行在当前和旧版本的浏览器或其他环境中。中文官网 0x00.babel概念 Babel 是一个编译器(输 ...
分类:其他好文   时间:2021-04-16 11:40:13    阅读次数:0
linux 删除中文乱码
ls -li find . -inum 1840704 -exec rm {} -rf \; ...
分类:系统相关   时间:2021-04-15 12:07:25    阅读次数:0
gyp ERR! stack Error : can't find python executable "python",you can set the PYTHON env variable.
vue中安装node-sassnpm install node-sass --save-dev1出现上面图中问题 解决办法:vscode里,打开终端,输入下面的内容先输入(在管理员模式下打开) npm install --global --production windows-build-tools ...
分类:编程语言   时间:2021-04-14 11:49:56    阅读次数:0
Full Binary Tree
题目来源 Full Binary Tree Description In computer science,a binary tree is a tree data structure in which each node has at most two children. Consider an ...
分类:其他好文   时间:2021-04-13 12:02:15    阅读次数:0
Leetcode** 162. Find Peak Element
Description: A peak element is an element that is strictly greater than its neighbors. Given an integer array nums, find a peak element, and return it ...
分类:其他好文   时间:2021-04-13 11:52:46    阅读次数:0
27780条   上一页 1 ... 9 10 11 12 13 ... 2778 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!