Coding Interview Prep: Arrays Question #1 (Easy) /// Lesson #2 [LeetCode]

preview_player
Показать описание
Ace your coding interview and get hired at any top tech / FANNG company and make $200,000+ a year. Take your first step with free lessons from our Big Tech (FAANG) Interview Prep Bootcamp ➡ Section 1: Lesson 2.

Section 1: Arrays - Question #1 Google Interview Question Two Sum (Easy)
Lesson 2: How To Approach Our Problem

==========

==========

Check out the interview below with ZTM student, Justin Lin... spoiler alert: he got hired by Amazon with a 2.9 GPA!

This could be you 👆

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

For me this sounds like this bootcamp really analyzes in a professional way in depth the way of reasoning unlike any other youtuber video that is of poor quality or simplistic but this is not the case this is a good video.

JoseLopez-whxe
Автор

const array = [1, 3, 7, 9, 2];
const target = 4;

for(let p1=0; p1<array.length; p1++){
for(let p2=p1+1; p2<array.length; p2++){
if(array[p1] + array[p2] === target){
console.log(p1, p2)
}
}
}


check that one .

assurancelyazidi
welcome to shbcf.ru