zl程序教程

Leetcode: 24 Game

  • [LeetCode] 45. Jump game II ☆☆☆☆☆(跳跃游戏 2)

    [LeetCode] 45. Jump game II ☆☆☆☆☆(跳跃游戏 2)

    https://leetcode-cn.com/problems/jump-game-ii/solution/xiang-xi-tong-su-de-si-lu-fen-xi-duo-jie-fa-by-10/ 描述 给定一个非负整数数组,你最初位于数组的第一个位置。 数组中的每个元素代表你在该位置可以跳跃的最大长度。 你的目标是使用最少的跳跃次数到达数组的最后一个位置。 示例: 输入: [2,

    日期 2023-06-12 10:48:40     
  • 【leetcode】Jump Game I, II 跳跃游戏一和二

    【leetcode】Jump Game I, II 跳跃游戏一和二

    题目: Jump Game I: Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maximum jump length at that pos

    日期 2023-06-12 10:48:40     
  • leetcode 292. Nim Game

    leetcode 292. Nim Game

    You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 to 3 stones. The one who removes the last stone will be th

    日期 2023-06-12 10:48:40     
  • Leetcode: Design Snake Game

    Leetcode: Design Snake Game

    Design a Snake game that is played on a device with screen size = width x height. Play the game online if you are not familiar with the game. The snake is initially positioned at the top left corne

    日期 2023-06-12 10:48:40     
  • Leetcode: Elimination Game

    Leetcode: Elimination Game

    There is a list of sorted integers from 1 to n. Starting from left to right, remove the first number and every other number afterward until you reach the end of the list. Repeat the previous step a

    日期 2023-06-12 10:48:40     
  • Leetcode: Game of Life

    Leetcode: Game of Life

    According to the Wikipedia's article: "The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970." Given a board with m by

    日期 2023-06-12 10:48:40     
  • LeetCode Jump Game II

    LeetCode Jump Game II

    LeetCode解题之Jump Game II 原题 数组中的每一个值表示在当前位置最多能向前面跳几步,推断至少跳几步可以跳到最后。 注意点: 全部的数字都是正数 跳的步数可以比当前的值小 保证全部的測试用例都可以跳到最后 样例: 输入: nums = [2, 3, 1, 1, 4] 输出: 2 解题思路 这是在 Jump Game 之上给出的

    日期 2023-06-12 10:48:40     
  • [LeetCode] Jump Game II

    [LeetCode] Jump Game II

    Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maximum jump length at that position. Your goal is to

    日期 2023-06-12 10:48:40     
  • [LeetCode] 1340. Jump Game V 跳跃游戏之五

    [LeetCode] 1340. Jump Game V 跳跃游戏之五

    Given an array of integers arr and an integer d. In one step you can jump from index i to index: i + x where: i + x < arr.length and  0 <&nbs

    日期 2023-06-12 10:48:40     
  • [LeetCode] 877. Stone Game 石子游戏

    [LeetCode] 877. Stone Game 石子游戏

    Alex and Lee play a game with piles of stones.  There are an even number of piles arranged in a row, and each pile has a positive integer number of stones piles[i]. The objective

    日期 2023-06-12 10:48:40     
  • [LeetCode] 24 Game 二十四点游戏

    [LeetCode] 24 Game 二十四点游戏

      You have 4 cards each containing a number from 1 to 9. You need to judge whether they could operated through *, /, +, -, (, )to get the value of 24. Example 1: I

    日期 2023-06-12 10:48:40     
  • [LeetCode] Design Snake Game 设计贪吃蛇游戏

    [LeetCode] Design Snake Game 设计贪吃蛇游戏

      Design a Snake game that is played on a device with screen size = width x height. Play the game online if you are not familiar with the game. The snake is initially positioned at the top left

    日期 2023-06-12 10:48:40     
  • [LeetCode] 293. Flip Game 翻转游戏

    [LeetCode] 293. Flip Game 翻转游戏

      You are playing the following Flip Game with your friend: Given a string that contains only these two characters: + and -, you and your friend take turns to flip twoconsecutive&

    日期 2023-06-12 10:48:40