
g0001_0100.s0045_jump_game_ii.Solution.swift Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-all Show documentation
Show all versions of leetcode-in-all Show documentation
104 LeetCode algorithm problem solutions
// #Medium #Top_100_Liked_Questions #Array #Dynamic_Programming #Greedy
// #Algorithm_II_Day_13_Dynamic_Programming #Dynamic_Programming_I_Day_4
// #Big_O_Time_O(n)_Space_O(1) #2024_06_23_Time_25_ms_(98.10%)_Space_15.7_MB_(75.63%)
public class Solution {
public func jump(_ nums: [Int]) -> Int {
var length = 0
var maxLength = 0
var minJump = 0
for i in 0..= nums.count - i - 1 {
return minJump
}
}
return minJump
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy