码迷,mamicode.com
首页 >  
搜索关键字:no rule to make targ    ( 12102个结果
Typescript中Partial, Readonly, Record, Pick
源码 /** * Make all properties in T optional */ type Partial<T> = { [P in keyof T]?: T[P]; }; /** * Make all properties in T readonly */ type Readonly<T ...
分类:其他好文   时间:2021-02-10 12:59:56    阅读次数:0
LeetCode - Minimum Remove to Make Valid Parentheses
Given a string s of '(' , ')' and lowercase English characters. Your task is to remove the minimum number of parentheses ( '(' or ')', in any position ...
分类:其他好文   时间:2021-02-09 12:12:28    阅读次数:0
[基础算法]-快排
package main import ( "fmt" "strings" ) func quickSort(l, r int, arry []int) { if l>=r { return } i,j := l-1,r+1 val := arry[(l+r)/2] for i<j{ for i++ ...
分类:编程语言   时间:2021-02-09 11:47:23    阅读次数:0
vue watch监听对象及对应值的变化
rule:{ name:"", age:"" } watch:{ rule:{ handler:function(){ //do something }, deep:true } } deep设置为true的意思是修改rule中任何一个属性,都会执行handler这个方法,但是这样消耗比较大,对象嵌 ...
分类:其他好文   时间:2021-02-03 10:56:49    阅读次数:0
GO学习-(10) Go语言基础之指针
Go语言基础之指针 区别于C/C++中的指针,Go语言中的指针不能进行偏移和运算,是安全指针。 要搞明白Go语言中的指针需要先知道3个概念:指针地址、指针类型和指针取值。 Go语言中的指针 任何程序数据载入内存后,在内存都有他们的地址,这就是指针。而为了保存一个数据在内存中的地址,我们就需要指针变量 ...
分类:编程语言   时间:2021-02-02 11:25:50    阅读次数:0
Security and Cryptography in Python - Attack on Caesar Cipher
Security and Cryptography in Python - Attack on Caesar Cipher Crypto Rule #1(Kerckhoffs' Principle) Eve should not be able to break the ciphers even w ...
分类:编程语言   时间:2021-02-01 12:50:36    阅读次数:0
安装Redis,配置开机启动
Redis 5 解压缩,编译(/home/software/) tar -zxvf redis-5.0.5.tar.gz ln -s redis-5.0.5 redis yum install gcc-c++ cd redis make && make install 此时,便可以通过redis-s ...
分类:其他好文   时间:2021-01-30 12:22:13    阅读次数:0
Linux 安装php7
1.安装依赖包 yum install -y gcc gcc-c++ make zlib zlib-devel pcre pcre-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libx ...
分类:Web程序   时间:2021-01-29 11:41:29    阅读次数:0
CF331E2 Deja Vu 图论
题意: 戳这里 分析: 考场上只会暴搜/kk 正解: 首先 \(n\) 很小,所以我们理论上来说可以处理出任意相邻两点之间的路径,然后通过拼接得到任意一个点对之间的答案,那么我们开始考虑如何进行拼接,首先暴力拼接显然不可取,所以我们可以只记录一些有用的状态 由于每条路径都有起点和终点,这不是废话么 ...
分类:其他好文   时间:2021-01-29 11:40:24    阅读次数:0
php 自定义验证器二:完整验证器
验证器类:Validate.php <?php namespace framework\library; class Validate { /** * 当前验证规则 * @var array */ protected $rule = []; /** * 验证提示信息 * @var array */ ...
分类:Web程序   时间:2021-01-28 11:58:59    阅读次数:0
12102条   上一页 1 ... 10 11 12 13 14 ... 1211 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!