节点NotReady Traints: node.kubernetes.io/unreachable:NoExecute node.kubernetes.io/unreachable:NoSchedule 解决办法: 查看 kube-controller-manager, kube-schedule ...
分类:
系统相关 时间:
2021-06-13 10:17:02
阅读次数:
0
You are given a 0-indexed string s that has lowercase English letters in its even indices and digits in its odd indices. There is a function shift(c, ...
分类:
其他好文 时间:
2021-05-04 15:31:41
阅读次数:
0
问题: 给定二维数组, 求其中子矩形中元素和不大于K 的最大和。 Example 1: Input: matrix = [[1,0,1],[0,-2,3]], k = 2 Output: 2 Explanation: Because the sum of the blue rectangle [[0 ...
分类:
其他好文 时间:
2021-04-19 15:55:02
阅读次数:
0
问题: 勇士救公主问题。 勇士从左上角[0,0]出发,要到达右下角[n-1,m-1]公主所在。 只能向右or向下移动。 格子上的数字代表:加减血。 若到达某个格子勇士血量<1那么,勇士立即死亡。游戏失败。 求,至少在出发时,勇士的初始血量是多少。 Example 1: Input: dungeon ...
分类:
其他好文 时间:
2021-04-02 13:09:41
阅读次数:
0
问题: 给定编号为0~numCourses-1 的课程,以及课程的依赖关系prerequisites 其中prerequisites[i] = [ai, bi],ai之前必须先上了bi的课程。 bi->ai 若能够上完所有的课程,给出一个上课顺序。 否则,返回空数组。 Example 1: Inpu ...
分类:
其他好文 时间:
2021-03-01 13:28:27
阅读次数:
0
Sort the Matrix Diagonally (M) 题目 A matrix diagonal is a diagonal line of cells starting from some cell in either the topmost row or leftmost column a ...
分类:
其他好文 时间:
2021-01-25 11:27:14
阅读次数:
0
###使用 Spring Data JPA 持久化数据 **Spring Data 是一个非常大的伞形项目,由多个子项目组成,其中大多数子项目都关注对不同的数据库类型进行数据持久化。**比较流行的几个 Spring Data 项目包括: Spring Data JPA:基于关系型数据库进行 JPA ...
分类:
其他好文 时间:
2020-12-14 12:53:09
阅读次数:
2
Difficulty: Medium Related Topics: Depth-first Search, Breadth-first Search, Union Find Link: https://leetcode.com/problems/number-of-islands/ Descrip ...
分类:
其他好文 时间:
2020-11-23 12:25:21
阅读次数:
3
--原文 oracle 1、第一种情况适用于delete删除(一条记录)的方式,利用oralce提供的闪回方法进行数据恢复。 前提:需要知道删除时间,就算不可以也必须确定准确的删除数据前的时间 然后利用以下语句可以找回删除的数据,再利用第二条语句将语句恢复到原表(前提原表主键唯一) 1 SELECT ...
分类:
数据库 时间:
2020-10-21 20:25:36
阅读次数:
34
package LeetCode_1507 import java.lang.StringBuilder /** * 1507. Reformat Date * https://leetcode.com/problems/reformat-date/description/ * * Given a ...
分类:
其他好文 时间:
2020-07-19 00:30:33
阅读次数:
69