Leetcode - Shift 2D Grid (Python)

  Рет қаралды 950

Timothy H Chang

Timothy H Chang

Күн бұрын

Пікірлер: 2
@janmichaelaustria620
@janmichaelaustria620 2 жыл бұрын
Woah you're back! I had no idea. Glad to see you're still doing the daily challenges when you can man! I did this slightly differently. Since k*rows*cols, was small i just swapped in place starting with the bottom right class Solution: def shiftGrid(self, grid: List[List[int]], k: int) -> List[List[int]]: rows = len(grid) cols = len(grid[0]) for _ in range(k): prev = grid[-1][-1] for row in range(rows): for col in range(cols): #save what is curretnly there temp = grid[row][col] grid[row][col] = prev prev = temp return grid swapping in place use modular arithmetic was pretty tricky! it took me to a bit to realize we swapped for every multiple of (j+ k) % N. we'd eventually hit the original i we started off with, which is why we advanced it i += 1
@timc3406
@timc3406 2 жыл бұрын
Jan! Nice man! Always good to hear from you!!
Making an Algorithm Faster
30:08
NeetCodeIO
Рет қаралды 151 М.
Python Leetcode Coding - Stacks (1)
18:11
Timothy H Chang
Рет қаралды 819
Yay😃 Let's make a Cute Handbag for me 👜 #diycrafts #shorts
00:33
LearnToon - Learn & Play
Рет қаралды 117 МЛН
Turn Off the Vacum And Sit Back and Laugh 🤣
00:34
SKITSFUL
Рет қаралды 7 МЛН
Lazy days…
00:24
Anwar Jibawi
Рет қаралды 6 МЛН
So You've Been Rejected from FAANG
5:56
Timothy H Chang
Рет қаралды 9 М.
My 10 “Clean” Code Principles (Start These Now)
15:12
Conner Ardman
Рет қаралды 287 М.
The Python Function You NEED For 2D Data
10:49
Mr. P Solver
Рет қаралды 38 М.
Why is Python 150X slower than C?
10:45
Mehul - Codedamn
Рет қаралды 20 М.
7 Лет Опыта в IT | Что я Понял?
19:56
Vlad Mishustin
Рет қаралды 231 М.
Dynamic Programming isn't too hard. You just don't know what it is.
22:31
DecodingIntuition
Рет қаралды 199 М.
Python 2D arrays and lists
10:43
RealLifeEd
Рет қаралды 26 М.
Sorting Algorithms Explained Visually
9:01
Beyond Fireship
Рет қаралды 552 М.
Yay😃 Let's make a Cute Handbag for me 👜 #diycrafts #shorts
00:33
LearnToon - Learn & Play
Рет қаралды 117 МЛН