来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/rotate-image 给定一个 n × n 的二维矩阵 matrix 表示一个图像。请你将图像顺时针旋转 90 度。 你必须在 原地 旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要 使用 ...
分类:
其他好文 时间:
2021-05-24 10:31:00
阅读次数:
0
题目来源:12. 整数转罗马数字 // 罗马数字包含以下七种字符: I, V, X, L,C,D 和 M。 // 字符 数值 // I 1 // V 5 // X 10 // L 50 // C 100 // D 500 // M 1000 // 例如, 罗马数字 2 写做 II ,即为两个并列的 ...
分类:
其他好文 时间:
2021-05-24 08:49:57
阅读次数:
0
#举个栗子如下: x_vals = np.linspace(0, 10, 5) #print(x_vals) [ 0. 2.5 5. 7.5 10. ] 1 2 3 4 #转化数组为矩阵 x_vals_column = np.transpose(np.matrix(x_vals)) #print(x ...
分类:
编程语言 时间:
2021-05-24 05:23:26
阅读次数:
0
给你一个整数数组 nums ,除某个元素仅出现 一次 外,其余每个元素都恰出现 三次 。请你找出并返回那个只出现了一次的元素。 示例 1: 输入:nums = [2,2,3,2] 输出:3 示例 2: 输入:nums = [0,1,0,1,0,1,99] 输出:99 提示: 1 ? nums.len ...
分类:
其他好文 时间:
2021-05-03 12:06:13
阅读次数:
0
根据文献,我需要的bootstrapping标准差为 d(t)是我的原始叠加结果,b(t)是第i次bootstrapping的结果。 而Matlab中std函数提供的标准差: 所以直接采用std计算bootstrapping的标准差是不行的 所以写了一个bootstrapping的标准差的脚本: f ...
分类:
移动开发 时间:
2021-04-29 12:21:43
阅读次数:
0
目录一览: (2) Declarative Pipeline Syntax 2.1) Sections - 章节 2.2) Directives - 指令 2.3) Sequential Stages - 顺序阶段 2.4) Parallel - 并行 2.5) Matrix - 模型 语法总结 s ...
分类:
其他好文 时间:
2021-04-28 12:09:24
阅读次数:
0
package com.example.leetcode; import java.util.*; /** * @description: 40. 组合总和 II * 给定一个数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的 ...
分类:
其他好文 时间:
2021-04-28 12:01:50
阅读次数:
0
参考资料: https://www.luogu.com.cn/blog/Karry5307/eulerian-numbers https://www.cnblogs.com/mengnan/p/9307521.html 欧拉数:\(\langle\begin{matrix}n\\ k\end{mat ...
分类:
其他好文 时间:
2021-04-26 14:09:23
阅读次数:
0
二叉树——113. 路径总和 II 题目: 思路: 前序遍历+回溯 代码参考:https://leetcode-cn.com/problems/path-sum-ii/solution/cqian-xu-bian-li-jia-hui-su-by-qing-feng-seve/ 代码: class ...
分类:
其他好文 时间:
2021-04-26 13:26:18
阅读次数:
0
与不含重复数字的全排列相比,在于: 排序; 添加对上一数字的判断 class Solution { LinkedList<List<Integer>> ans=new LinkedList<>(); LinkedList<Integer> path=new LinkedList<>(); boole ...
分类:
其他好文 时间:
2021-04-26 13:15:08
阅读次数:
0