KZ
bin
Негізгі бет
Қазірдің өзінде танымал
Тікелей эфир
Ұнаған бейнелер
Қайтадан қараңыз
Жазылымдар
Кіру
Тіркелу
Ең жақсы KZbin
Фильм және анимация
Автокөліктер мен көлік құралдары
Музыка
Үй жануарлары мен аңдар
Спорт
Ойындар
Комедия
Ойын-сауық
Тәжірибелік нұсқаулар және стиль
Ғылым және технология
Longest Common Subsequence | (C++, Java, Python) |30 day Challenge | Day 26 | LeetCode #1143
28:56
LRU Cache | (C++, Java, Python) |30 day Challenge | Day 24 | LeetCode #146
29:52
Lazy days…
00:24
Smart Sigma Kid #funny #sigma
00:33
I thought one thing and the truth is something else 😂
00:34
БУ, ИСПУГАЛСЯ?? #shorts
00:22
Jump Game | (C++, Java, Python) |30 day Challenge | Day 25 | LeetCode #55
Рет қаралды 6,746
Facebook
Twitter
Жүктеу
1
Жазылу 58 М.
Knowledge Center
Күн бұрын
Пікірлер: 9
@KnowledgeCenter
4 жыл бұрын
Don't forget to share your solutions which worked for you. Thanks.
@rakesht.j664
4 жыл бұрын
public boolean canJump(int[] A) { int max= 0; for(int i=0;imax) { return false;} max = Math.max(A[i]+i,max); } return true; }
@mohamedlamnaouar2175
4 жыл бұрын
my solution in python : class Solution: def canJump(self, nums: List[int]) -> bool: if len(nums) == 0: return False if len(nums) == 1: return True j = len(nums) - 2 while j >= 0: cntZero = 0 while nums[j] == 0: cntZero += 1 j -= 1 if cntZero > 0: flag = True jump = 0 for j in range(j, -1, -1): if nums[j] >= cntZero + 1 + jump: flag = False break jump += 1 if flag == True: return False j -= 1 return True
@williamwambua7710
4 жыл бұрын
Nice job. It is somehow related to the problem on dynamic programming about the minimum jumps required to reach the end of the array.
@umapathybabu8397
4 жыл бұрын
class Solution { public boolean canJump(int[] nums) { int dp[]=new int[nums.length]; Arrays.fill(dp,-1); return helper(nums,0,dp); } boolean helper(int[] nums,int position,int dp[]){ if(position>=nums.length-1) return true; if(dp[position]!=-1) return dp[position]==1?true:false; int jumpLength = Math.min(nums[position]+position,nums.length); for(int i=position;i
@srinish1993
4 жыл бұрын
this is a classic dp question, but solved in greedy fashion.
@indranilthakur3605
4 жыл бұрын
It says this question could be solved by Greedy Algo as well. Which greedy algo you used?
@ayushupadhyaya739
4 жыл бұрын
sir please also give solutions of the atcoder beginner contest please
@svendbentjensen5512
Жыл бұрын
KZbin need an "Indian Accent" tag so people can sort out these unbearable videos.
28:56
Longest Common Subsequence | (C++, Java, Python) |30 day Challenge | Day 26 | LeetCode #1143
Knowledge Center
Рет қаралды 4,9 М.
29:52
LRU Cache | (C++, Java, Python) |30 day Challenge | Day 24 | LeetCode #146
Knowledge Center
Рет қаралды 11 М.
00:24
Lazy days…
Anwar Jibawi
Рет қаралды 6 МЛН
00:33
Smart Sigma Kid #funny #sigma
CRAZY GREAPA
Рет қаралды 9 МЛН
00:34
I thought one thing and the truth is something else 😂
عائلة ابو رعد Abo Raad family
Рет қаралды 9 МЛН
00:22
БУ, ИСПУГАЛСЯ?? #shorts
Паша Осадчий
Рет қаралды 3 МЛН
18:35
Jump Game (LeetCode 55) | Full solution with animations and visuals | Greedy Algorithms
Nikhil Lohia
Рет қаралды 34 М.
10:06
LeetCode 55. Jump Game (Algorithm Explained)
Nick White
Рет қаралды 78 М.
16:44
Contiguous Array | LeetCode 30 day Challenge | LeetCode 525
Knowledge Center
Рет қаралды 8 М.
18:03
How I would learn Leetcode if I could start over
NeetCodeIO
Рет қаралды 695 М.
24:13
LeetCode 30 day Challenge | Day 17 | Number of Islands (C++, Java, Python) | LeetCode 200
Knowledge Center
Рет қаралды 7 М.
21:07
Permutation in String | LeetCode 567 | C++, Java, Python | May LeetCoding Day 18
Knowledge Center
Рет қаралды 7 М.
16:28
Jump Game - Greedy - Leetcode 55
NeetCode
Рет қаралды 256 М.
10:45
Why is Python 150X slower than C?
Mehul - Codedamn
Рет қаралды 19 М.
21:15
C++ vs Rust: which is faster?
fasterthanlime
Рет қаралды 404 М.
16:30
Introduction to Stacks and Queues (Data Structures & Algorithms #12)
CS Dojo
Рет қаралды 294 М.
00:24
Lazy days…
Anwar Jibawi
Рет қаралды 6 МЛН