题目描述
- 给定一个 m 行 n 列的矩阵 matrix ,请按照 顺时针螺旋顺序 ,返回矩阵中的所有元素。
example
input : matrix = [[1,2,3],[4,5,6],[7,8,9]]
output : [1,2,3,6,9,8,7,4,5]
input : matrix = [[1,2,3,4],[5,6,7,8],[9,10,11,12]]
output : [1,2,3,4,8,12,11,10,9,5,6,7]
example
input : head = [3,2,0,-4], pos = 1
output : tail connects to node index 1
note : 返回索引为 1 的链表节点,链表中有一个环,其尾部连接到第二个节点。
input : head = [1,2], pos = 0
output : tail connects to node index 0
note : 返回索引为 0 的链表节点,链表中有一个环,其尾部连接到第二个节点。
input : head = [1], pos = -1
output : no cycle
note : 返回 null,链表中没有环。
example
input : s = " -42"
output : -42
input : s = "20000000000000000000"
output : 2147483647
input : s = " 0000000000012345678"
output : 12345678
input : s = " 0000000000000 "
output : 0
tag:
缺失模块。
1、请确保node版本大于6.2
2、在博客根目录(注意不是yilia根目录)执行以下命令:
npm i hexo-generator-json-content --save
3、在根目录_config.yml里添加配置:
jsonContent: meta: false pages: false posts: title: true date: true path: true text: false raw: false content: false slug: false updated: false comments: false link: false permalink: false excerpt: false categories: false tags: true