Google Software Engineering Interview: Binary Tree Maximum Path

  Рет қаралды 14,804

Exponent

Exponent

Күн бұрын

Пікірлер: 13
@tryexponent
@tryexponent 2 жыл бұрын
Don't leave your software engineering career path to chance. Make sure you're interview-ready with Exponent's software developer interview prep course. Start free. bit.ly/4eMtImU
@simonayzman
@simonayzman 2 жыл бұрын
Great to be back!
@devs2530
@devs2530 2 жыл бұрын
I liked the thought process.
@strawberriesandcream2863
@strawberriesandcream2863 Жыл бұрын
He’s really good at interviewing! Loved seeing how the solution came together.
@atanuroy911
@atanuroy911 2 жыл бұрын
Ah man. I really wish to reach that level of thought process. Feels like I need a mentor.
@tryexponent
@tryexponent 2 жыл бұрын
Check out Exponent's list of expert coaches and mentors to help you think about questions like this! www.tryexponent.com/coaching
@atanuroy911
@atanuroy911 2 жыл бұрын
@@tryexponent for free would be great cuz coming from a third world country its not possible to pay that much
@ThaoPhuong-ln9vc
@ThaoPhuong-ln9vc 2 жыл бұрын
@@tryexponent Does Exponent provide courses and solutions in Python only?
@hemanth121
@hemanth121 Жыл бұрын
class Solution { public int maxPathSum(TreeNode root) { this.sol(root); return this.max; } int max = Integer.MIN_VALUE; public int sol(TreeNode root) { if(root == null) { return -(int)1e7; } int sum1 = sol(root.right); int sum2 = sol(root.left); int max1 = Math.max(root.val,Math.max(root.val + sum1,root.val + sum2)); max = Math.max(max1,Math.max(max,root.val + sum1 + sum2)); return max1; } }
@sergejsvisockis
@sergejsvisockis 2 жыл бұрын
I wish I could see the times when Google would give a real world coding tasks instead of some kind of unrealistic algebra...
@abubalo
@abubalo 2 жыл бұрын
Great interview
@harisjalal7575
@harisjalal7575 2 жыл бұрын
Good job Simon!
@lucaspinto2450
@lucaspinto2450 2 жыл бұрын
What if they’re all negative? The max 0 only captures some negatives
Google Software Engineering Interview Guide
5:19
Exponent
Рет қаралды 13 М.
Don't underestimate anyone
00:47
奇軒Tricking
Рет қаралды 15 МЛН
БУ, ИСПУГАЛСЯ?? #shorts
00:22
Паша Осадчий
Рет қаралды 2,9 МЛН
When u fight over the armrest
00:41
Adam W
Рет қаралды 31 МЛН
Software Engineering Mock Interview: Contiguous Subarray Sums
35:04
Binary Tree Maximum Path Sum (Animated Walkthrough) (LeetCode)
11:43
AlgosWithMichael
Рет қаралды 23 М.
Asking Googlers full version Ep.1 | Software Engineer
10:13
Cynthia
Рет қаралды 127 М.
Google Coding Mock Interview: Chess N-Queens problem
29:19
Exponent
Рет қаралды 5 М.
Google system design interview: Design Spotify (with ex-Google EM)
42:13
IGotAnOffer: Engineering
Рет қаралды 1,2 МЛН
Don't underestimate anyone
00:47
奇軒Tricking
Рет қаралды 15 МЛН