题目: 题解:
class Solution {public int[][] generateMatrix(int n) {int num 1;int[][] matrix new int[n][n];int left 0, right n - 1, top 0, bottom n - 1;while (left < right && top < bottom) {for (int column left; co…
每日一题,很久没做链表的题了,今天做l一道相对简单的力扣中等难度题。
题目要求
给你一个链表的头节点 head ,旋转链表,将链表每个节点向右移动 k 个位置。
示例 1: 输入:head [1,2,3,4,5], k 2
输出&…