The One Chip Coding Interview Challenge

preview_player
Показать описание


Preparing For Your Coding Interviews? Use These Resources
————————————————————

Other Social Media
----------------------------------------------

Show Support
------------------------------------------------------------------------------

#coding #programming #softwareengineering
Рекомендации по теме
Комментарии
Автор

Sign up for Cloud Happy and then comment #CloudHappy below for a chance to win 1 month free access to Pluralsight Skills!

NickWhite
Автор

4:50 "Are you recursive guy? You recursion?" That just sent me I'm dying rn

mintlata
Автор

companies wanting people that are able to "work under pression" just got a whole new meaning
thank god virtual interviews are the norm now.

noriller
Автор

Title should be white guy destroyed by a chilly

martinharris
Автор

I don't wanna see sir Nick in pain coz that was really hard to do.. But I wish him to have more challenges like this as it encourages to break the impossible..

shadabalam
Автор

when he swallowed it and you see the panic set in lmao

MyBinaryLife
Автор

is this a programming content house or something?

froggy
Автор

imagine if coding interviews were just the interviewer beating the shit out of you for a few minutes then explained exactly how to code out the solution and you just had to follow their prompts. might be preferable to the status quo

MyBinaryLife
Автор

I thought you were at least going to select the challenge and read it BEFORE eating the chip! 😂😂 This was awesome!

Автор

Plural sight is my favourite... I learnt alot when my company had subscription.... I am missing it now :(

prasadm
Автор

Yo I wanna see Cole Hastings solve a leetcode problem!

ayo
Автор

public static int _result = 0;

public int rangeSumBST(TreeNode root, int low, int high)
{
if (root == null) return _result;

if (root.Val <= high && root.Val >= low)
_result += root.Val;

DoSumBST(root.Left, low, high);
DoSumBST(root.Right, low, high);

return _result;
}

jahedurrahman
Автор

But that's not the intended solution. It was a BST. You have to use it's properties

ShivamJha
Автор

rumor has it Nick is still drinking milk. Good help Ben and HI LINDA

KevinNaughtonJr
Автор

Hurts even watching, can't imagine how it actually felt...

officialabdulrehman
Автор

Ben is right about him getting a harder problem

keokawasaki
Автор

And the t-shirt has "stay cool" on it XD

yyydollars
Автор

This is why I subscribed (and for the leetcode problems)

CronusVelox
Автор

this is comical "you can iterate nodes right" lmao

Anonymous-njow
Автор

this is what peak performance men looks like.

valentinellos