Daily Leetcode Challenge | DEC 16 | Hindi | Final Array State After K Multiplication Operations I

  Рет қаралды 76

Let us code

Let us code

Күн бұрын

Пікірлер: 3
@darshankumar5546
@darshankumar5546 26 күн бұрын
import heapq class Solution: def getFinalState(self, nums: List[int], k: int, multiplier: int) -> List[int]: minheap=[] n=len(nums) for i in range(n): heapq.heappush(minheap,(nums[i],i)) #print(minheap) for i in range(k): #print('k=',k) value,indexx=minheap[0] value*=multiplier nums[indexx]=value heapq.heapreplace(minheap,(value,indexx)) #print(minheap) return nums
@darshankumar5546
@darshankumar5546 26 күн бұрын
English Explanation: kzbin.info/www/bejne/lZu9mZqnZadobdE
@darshankumar5546
@darshankumar5546 26 күн бұрын
#tc=O(n+klogn) #sc=O(n) import heapq class Solution: def getFinalState(self, nums: List[int], k: int, multiplier: int) -> List[int]: minheap=[] n=len(nums) for i in range(n): #O(n) minheap.append((nums[i],i)) heapq.heapify(minheap) #O(n) print(minheap) for i in range(k): print('k=',k) value,indexx=heapq.heappop(minheap) value*=multiplier nums[indexx]=value heapq.heappush(minheap,(value,indexx)) print(minheap) return nums
I Solved 1583 Leetcode Questions  Here's What I Learned
20:37
ThePrimeTime
Рет қаралды 783 М.
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН
Big-O Notation - For Coding Interviews
20:38
NeetCode
Рет қаралды 546 М.
The Absolute Best Intro to Monads For Software Engineers
15:12
Studying With Alex
Рет қаралды 678 М.
Learn Coding & Get a Job (in 2025) 🔥
16:54
CodeWithHarry
Рет қаралды 414 М.
Web Development ROADMAP in 2025 that guarantees Job!
16:09
Nishant Chahar
Рет қаралды 51 М.
7 Outside The Box Puzzles
12:16
MindYourDecisions
Рет қаралды 180 М.
Catching up with async Rust
17:55
fasterthanlime
Рет қаралды 27 М.
Rotate Array - Leetcode 189 - Python
8:59
NeetCode
Рет қаралды 169 М.
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН