1. CI运行规格配置文件.gitlab-ci.yml
yml 配置文件语法: https://docs.gitlab.com/17.3/ee/ci/yaml/index.html
添加.gitlab-ci.yml文件并配置 :
## 定义几个阶段
stages: # List of stages for jobs, and their order of execution- buil…
1. 报错提示 154:15 error Unexpected lexical declaration in case block no-case-declarations154:21 error resId is assigned a value but never used no-unused-vars158:15 error Unexpected lexical declaration in case block no-case-declarations158:21 e…
一、题目描述
编写一个高效的算法来搜索 m x n 矩阵 matrix 中的一个目标值 target 。该矩阵具有以下特性:
每行的元素从左到右升序排列。每列的元素从上到下升序排列。 示例 1: 输入:matrix [[1,4,7,11,15],[2,5,8,12,19],[3,6,9,16,22],…
题目描述: 个人题解:
由于需要找到倒数第 n 个节点,因此可以使用两个指针 first 和 second 同时对链表进行遍历,并且 first 比 second 超前 n 个节点。当 first 遍历到链表的末尾时,second 就恰好处于倒数第 n 个节点…