Perfect Squares ⭕️ Dynamic Programming Leetcode Problems solutions Hello World by prince

  Рет қаралды 3,492

Hello World

Hello World

Күн бұрын

Пікірлер: 15
@santoshkumarpasi5729
@santoshkumarpasi5729 Жыл бұрын
Best vid on KZbin
@TheKu25
@TheKu25 Жыл бұрын
Great Explaination, Thanks alot🙂
@HelloWorldbyprince
@HelloWorldbyprince Жыл бұрын
Thanks a lot
@JangBahadur3028
@JangBahadur3028 8 ай бұрын
4:17 it would be 8. kindly add a hovering comment on the video, so that others get help.
@himanshusahu6879
@himanshusahu6879 Жыл бұрын
nice plz continue
@HelloWorldbyprince
@HelloWorldbyprince Жыл бұрын
Thanks a lot
@Lelkanta
@Lelkanta Жыл бұрын
Great vid!😀 #princebhai
@adityagoyal9556
@adityagoyal9556 4 ай бұрын
def numSquares(self, n): return self.num(n,{}) def num(self, n,dic): if(n in dic): return dic[n] arr = [] frequency = int(math.sqrt(n)) for i in range(frequency): i+=1 arr.append(i) maxCount = -1 for i in arr: count = self.num(n-(i*i),dic) # the argument is >=0 since i*i
@umeshkaushik710
@umeshkaushik710 Жыл бұрын
Bhaiya appki puri Stack/Queue, Graphs, heap or DP playlist karlu, thats enough to crack and coding interview?
@Premierser
@Premierser Жыл бұрын
Bro, why didn't we use: fill(dp.begin(),dp.end(),-1); in this question? how to know where to use this and where to not use this?
@ujjawalhere4887
@ujjawalhere4887 10 ай бұрын
u can use everywhere but wherever u get wrong ans then try this
@BobMarley-qh2qs
@BobMarley-qh2qs Жыл бұрын
bhai one question why did u declare the dp array outside the class , and yeah when i try to do the same thing inside the function i got a tle? is this related to memory allocation?
@amanraj7467
@amanraj7467 8 ай бұрын
Intialize dp vector in given function then it's work
@MalobikaNandy
@MalobikaNandy 6 ай бұрын
why am I getting TLE even after applying DP class Solution { static int dp[]=new int[10001]; public int numSquares(int n) { Arrays.fill(dp,-1); return numSquaresHelper(n); } public int numSquaresHelper(int n) { if(n
@VaibhavSutar-xm3cn
@VaibhavSutar-xm3cn 7 ай бұрын
var numSquares = function(n) { let ans = 0 let leastperfectSquares = 0 for(let i = 2;i
Это было очень близко...
00:10
Аришнев
Рет қаралды 7 МЛН
🕊️Valera🕊️
00:34
DO$HIK
Рет қаралды 18 МЛН
龟兔赛跑:好可爱的小乌龟#short #angel #clown
01:00
Super Beauty team
Рет қаралды 113 МЛН
Ouch.. 🤕⚽️
00:25
Celine Dept
Рет қаралды 33 МЛН
Perfect Squares - Dynamic Programming - Leetcode 279 - Python
15:12
Valid Perfect Square | Leetcode #367
9:00
Techdose
Рет қаралды 15 М.
How I would learn Leetcode if I could start over
18:03
NeetCodeIO
Рет қаралды 648 М.
Decode Ways | Recursion | Memo | Bottom Up | Leetcode 91
40:04
codestorywithMIK
Рет қаралды 8 М.
Pydantic Tutorial • Solving Python's Biggest Problem
11:07
pixegami
Рет қаралды 283 М.
Это было очень близко...
00:10
Аришнев
Рет қаралды 7 МЛН