LeetCode 30 day Challenge | Day 15 | Product of Array except self (C++ & Java)

  Рет қаралды 5,579

Knowledge Center

Knowledge Center

Күн бұрын

Пікірлер: 9
@KnowledgeCenter
@KnowledgeCenter 4 жыл бұрын
Please share your solutions - no matter whether it's O(1) space or O(n) space in the comments. I have added C++ and Java codes for both the approaches in the video.
@electricalcoder3025
@electricalcoder3025 4 жыл бұрын
Great content dude....keep moving...
@KnowledgeCenter
@KnowledgeCenter 4 жыл бұрын
Thanks, will do!
@adarshmv261
@adarshmv261 4 жыл бұрын
Appreciate your effort sir.... can you please include python code as well instead of Java or C++
@KnowledgeCenter
@KnowledgeCenter 4 жыл бұрын
Haha. Will definitely try from next video. I hope nobody asks me for 4th language.
@lilacu
@lilacu 4 жыл бұрын
Lol
@jaggujaggu2922
@jaggujaggu2922 4 жыл бұрын
import itertools class Solution: def productExceptSelf(self, nums: List[int]) -> List[int]: l=[] k=list(itertools.combinations(nums,len(nums)-1)) def multiplyList(myList) : result = 1 for x in myList: result = result * x return(result) for i in k: l.append(multiplyList(i)) l=l[::-1] return(l) i am a begginer, bro can u help me with this code i am not able to pass all testcases
@KnowledgeCenter
@KnowledgeCenter 4 жыл бұрын
Your solution doesn't look O(n) time. In your code k is a list of all subsequences of n-1 length. Then you are iterating each list and multiplying. So, multiplying all elements of 1 list is O(n). So, do this for n lists. So, overall time complexity is O(nxn) = O(n2). All test cases will pass if you implement O(n) solution. Try avoiding many repeated multiplications, with the approach explained in video.
@jaggujaggu2922
@jaggujaggu2922 4 жыл бұрын
@@KnowledgeCenter tq bro
How To Choose Mac N Cheese Date Night.. 🧀
00:58
Jojo Sim
Рет қаралды 98 МЛН
Муж внезапно вернулся домой @Oscar_elteacher
00:43
История одного вокалиста
Рет қаралды 7 МЛН
МЕНЯ УКУСИЛ ПАУК #shorts
00:23
Паша Осадчий
Рет қаралды 5 МЛН
Увеличили моцареллу для @Lorenzo.bagnati
00:48
Кушать Хочу
Рет қаралды 8 МЛН
LeetCode Day 15 - Product of Array Except Self
16:00
Errichto Algorithms
Рет қаралды 33 М.
NVIDIA’s New AI: Stunning Voice Generator!
6:21
Two Minute Papers
Рет қаралды 78 М.
Product of Array Except Self - LeetCode 238 - Java
28:54
LeetCode University
Рет қаралды 2 М.
Product of Array Except Self - Leetcode 238 - Python
11:54
NeetCode
Рет қаралды 651 М.
How To Choose Mac N Cheese Date Night.. 🧀
00:58
Jojo Sim
Рет қаралды 98 МЛН