问题描述 下面是有关这个问题的描述部分。 英文 Given a string s, return the first non-repeating character in it and return its index. If it does not exist, return -1. 中文 针对给 ...
分类:
其他好文 时间:
2021-04-28 12:10:00
阅读次数:
0
在帮朋友解决一个vue的问题的时候,想删除数组里面的一个元素,在网上查询使用splice方法,但一直报错,提示jtConlist.splice is not a function,找了好长时间,也没找到问题 splice是数组的方法,按道理肯定有这个方法,除非jtConlist不是数组,使用type ...
分类:
其他好文 时间:
2021-04-28 12:06:50
阅读次数:
0
unique(arr) { const res = new Map(); return arr.filter( (arr) => !res.has(arr.strat_id) && res.set(arr.strat_id, 1) ); }, ...
分类:
编程语言 时间:
2021-04-28 12:04:33
阅读次数:
0
php命名空间在第一个文件开关以namespace 命名空间名,则当前的文件为该命名空间,当include其他文件的,其他文件的命名空间为文件的开头namespace名,如没有为全局,不因为include继承,查看当前文件的命名空间可用echo '"', __NAMESPACE__, '"'; ph ...
分类:
Web程序 时间:
2021-04-28 12:03:18
阅读次数:
0
系统版本: [root@localhost modules]# rpm -q centos-release centos-release-7-5.1804.el7.centos.x86_64 一、yum安装PHP 1.检查当前安装的PHP包 yum list installed | grep php ...
分类:
Web程序 时间:
2021-04-28 12:02:43
阅读次数:
0
package com.example.leetcode; import java.util.*; /** * @description: 40. 组合总和 II * 给定一个数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的 ...
分类:
其他好文 时间:
2021-04-28 12:01:50
阅读次数:
0
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http:// ...
分类:
移动开发 时间:
2021-04-28 11:48:02
阅读次数:
0
一些简单的算法与数据结构 稀疏数组 int chessArr1[][] = new int[11][11];//11*11的数组 int sum = 0; chessArr1[1][2] = 1;//设置两个值 chessArr1[2][3] = 2; //打印原数组 for(int[] row : ...
分类:
编程语言 时间:
2021-04-28 11:46:26
阅读次数:
0
1.splice() 本质上会修改当前数组 slice()生成新的数组,原来的数组不改变 2.splice(index,howmany,item1,...,itemX) : index必须的 改变的起始位置,为负数时从最后面算; howmany必须:从index开始的多少位;itemX可选:替换的部 ...
分类:
其他好文 时间:
2021-04-27 15:23:34
阅读次数:
0
循环结构 while 循环 do...while 循环 for 循环 在Java5中引入了一种主要用于数组的增强型for循环 while 循环 while是最基本的循环,它的结构为: while(布尔表达式){ //循环内容} 只要布尔表达式为 true,循环就会一直运行 我们大多数情况是会让循环停 ...
分类:
编程语言 时间:
2021-04-27 15:22:47
阅读次数:
0