[LCR 140. 训练计划 II](https://leetcode.cn/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof/)

 

| English | 简体中文 |

LCR 140. 训练计划 II

题目描述

给定一个头节点为 head 的链表用于记录一系列核心肌群训练项目编号,请查找并返回倒数第 cnt 个训练项目编号。

 

示例 1:

输入:head = [2,4,7,8], cnt = 1
输出:8

 

提示:

  • 1 <= head.length <= 100
  • 0 <= head[i] <= 100
  • 1 <= cnt <= head.length

 

相关话题

相似题目

Licensed under CC BY-NC-SA 4.0
最后更新于 2024-10-18