I started making soft recently, I was wondering if you wanna do any features.
@agileprogramming74634 жыл бұрын
Sir why do we get different runtimes in Leetcode for the same exact code ?
@KnowledgeCenter4 жыл бұрын
The test cases are such that all of them finish within a few milliseconds and many times in microseconds, so these show 0 ms. In such low scale there can be high fluctuations. If the testcases are such that these take a few seconds, then the fluctuation will be low.
@FenixFahad4 жыл бұрын
Sir can you also explain this easy problem - "1502. Can Make Arithmetic Progression From Sequence" but without using sorting. Thanks alot :)
@Brijeshkumar-lk5mt4 жыл бұрын
Sir, please make video on multiplication of large numbers.
@raviashwin11574 жыл бұрын
Great content,keep going
@SHusen-nw6uo2 жыл бұрын
how to insert element at first pos in java
@bobbycsit169 ай бұрын
if the output is 0,1,2 it should be 1,3
@renuvelhal51542 жыл бұрын
why return [1] + digits in python and not simple result
@maheshtiwari2297 Жыл бұрын
it means we have a carry at the leftmost digit, so add 1 at the beginning.
@pythonenthusiast92924 жыл бұрын
can you explain the program logic to add two arrays? like [2,3,5,5] + [7,6,4,5] = [1,0,0,0,0] in a seperate vid?