1.if..else public int calculate(int a, int b, String operator) { int result = Integer.MIN_VALUE; if ("add".equals(operator)) { result = a + b; } else ...
分类:
其他好文 时间:
2021-07-15 18:58:38
阅读次数:
0
二维数组的遍历使用foreach public int numWays(int n, int[][] relation, int k) { ways = 0; this.n = n; this.k = k; edges = new ArrayList<>(); //把关系处理成list,类似于图的每 ...
分类:
编程语言 时间:
2021-07-07 17:49:25
阅读次数:
0
在NPM 中安装 npm install -g yarn 安装完成后,你可以测试下自己的版本 yarn --version 安装vuepress (全局安装) yarn global add vuepress # 或者:npm install -g vuepress yarn init初始化项目创建 ...
分类:
其他好文 时间:
2021-07-05 19:08:37
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .box1{ width: 100px; height: 100px; background-color:red ...
分类:
其他好文 时间:
2021-07-05 18:59:08
阅读次数:
0
Test I get 10 times more traffic from [Google] [1] than from [Yahoo] [2] or [MSN] [3]. ? [1]: http://google.com/ "Google" [2]: http://search.yahoo.com ...
分类:
其他好文 时间:
2021-07-05 18:14:09
阅读次数:
0
前面介绍的vue的组件书写中,必须要在data,methons,或者computed等模块中写上对应的内容,vue3提供了一种更加自由的写法,不用非得定义这些各个模块并只能将需要的内容写入固定的模块中,这种写法叫组合API。 如下Home.vue: <template> <div class="ho ...
以下函数用于对 dtype 为 numpy.string_ 或 numpy.unicode_ 的数组执行向量化字符串操作。 它们基于 Python 内置库中的标准字符串函数。 这些函数在字符数组类(numpy.char)中定义。 函数描述 add() 对两个数组的逐个字符串元素进行连接 multip ...
分类:
其他好文 时间:
2021-07-05 17:49:28
阅读次数:
0
我司gerrit 在gerrit review的流程上用js 定制了一堆precheck的checkbox,有时候遇上浏览器抽风,或者gerrit 流程顺序不对,导致label不能在gerrit界面上手动修改,时间紧急只好用命令行 修改gerrit label,记录下命令: ssh -p 29418 ...
分类:
其他好文 时间:
2021-07-02 16:42:29
阅读次数:
0
先留个坑 我回来了( 什么是 LCA 对于有根树T的两个结点u、v,最近公共祖先LCA(u,v)表示一个结点x,满足x是u和v的祖先且x的深度尽可能大。在这里,一个节点也可以是它自己的祖先。 以上, 百度百科中的定义, 不仅是你, 我也看不懂. 简单点说, 就是一棵有根树中两个节点的最近公共祖先, ...
分类:
其他好文 时间:
2021-07-02 15:51:34
阅读次数:
0
0. 参考 Manjaro安装fcitx5-rime default.custom.yaml fcitx5的简约风格皮肤 Rime (简体中文) 1. 安装rime sudo pacman -S fcitx5 fcitx5-qt fcitx5-gtk fcitx5-configtool fcitx5 ...
分类:
编程语言 时间:
2021-07-02 15:50:53
阅读次数:
0