Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
50 days of LEETCODE in Java: Algorithms Coding Interview
Rating: 4.7 out of 5(8 ratings)
261 students

50 days of LEETCODE in Java: Algorithms Coding Interview

Practice data structure and algorithms questions for interviews at FAANG companies like Google, Facebook, Apple & Amazon
Last updated 11/2024
English
English [Auto],

What you'll learn

  • Solve Easy to Hard Difficulty problems using different data structures and algorithms
  • How to solve some of the most popular interview questions asked by major tech companies
  • Breaking down the coding interview problems in a step by step, systematic manner
  • Popular problems patterns
  • Algorithms and data structures
  • Strengthen your problem solving and programming skills

Course content

48 sections217 lectures22h 35m total length
  • Introduction to the problem10:42

    Solve the container with the most water problem by choosing two lines from a height array, computing area as width times the minimum height.

  • Brute Force solution Intuition6:15

    Enumerate all wall pairs to compute each container's water area as the minimum height times the width, and track the maximum.

  • pseudocode walkthrough7:36

    Follow a brute force pseudocode walkthrough of the container with most water, evaluating all wall pairs to maximize the area while noting O(n^2) time and constant space.

  • Better Approach intuition10:34

    Apply a two-pointer strategy to the two walls problem, use min height times width to compute area, and move the pointer at the smaller wall to improve from n^2 time.

  • Approach 2 Pseudocode walkthrough8:56

    Walk through the pseudocode to implement a two-pointer solution that uses the min height of the left and right pointers to compute the max container area.

  • Implementing the code2:44

    Implement the two-pointer solution for the container with most water problem, initializing max area, moving left and right pointers based on heights, and computing area as min(height[left], height[right]) times width.

Requirements

  • Basic Knowledge of fundamental data structures and algorithms is preferred
  • Basic Knowledge of Java is preferred
  • If you want to submit the code yourself, you should be familiar with leetcode and have an account

Description

  • Getting ready for your software engineering coding interview? This is the place for you.

  • Want to learn about the most popular problem-solving techniques, patterns, data structures, and algorithms used in those difficult interviews? Come on in

  • Want a step by step explanation of the most popular interview questions in the industry? You got it.

  • Want to get better at competitive programming? Enjoy the ride


Welcome to the course!

In this course, you'll have a detailed, step by step explanation hand-picked LeetCode questions where you'll learn about the most popular techniques and problems used in the coding interview, This is the course I wish I had when I was doing my interviews. and it comes with a 30-day money-back guarantee


What is LeetCode?

LeetCode is essentially a huge repository of real interview questions asked by the most popular tech companies ( Google, Amazon, Facebook, Microsoft, and more ).

The problem with LeetCode is also its advantage, IT'S HUGE, so huge in fact that interviewers from the most popular companies often directly ask questions they find on LeetCode, So it's hard to navigate through the huge amount of problems to find those that really matter, this is what this course is for.

I spent countless hours on LeetCode and I'm telling you that you don't have to do the same and still be able to get a job at a major tech company.

Course overview :

In this course, I compiled the most important and the most popular interview questions asked by these major companies and I explain them, in a true STEP BY STEP fashion to help you understand exactly how to solve these types of questions.

The problems are handpicked to ensure complete coverage of the most popular techniques, data structures, and algorithms used in interviews so you can generalize the patterns you learn here on other problems.


Each problem gets multiple videos :

  • Explanation and intuition video(s): we do a detailed explanation of the problems and its solution, this video will be longer because we will do a step by step explanation for the problems.

  • Coding video(s): where we code the solution discussed in the explanation video together.

  • Walkthrough video(s): where we go over each line of code and see what it does


We will use basic Java for this course to code our solutions, previous knowledge in Java is preferred but NOT required for the coding part of the course.


The problems are categorised for easier navigation and will be regularly updated with more popular and interesting problems.


Some of the stuff this course will cover are :


  • Arrays and Strings interview questions.


  • Searching interview questions and algorithms.


  • Dynamic Programming interview questions.


  • Backtracking interview questions (  With call stack visualisation ).


  • Trees and Graphs interview questions and algorithms.


  • Data structures Like Stacks, Queues, Maps, Linked Lists, and more.


In other words, this course is your one-stop-shop for your dream job.



Who this course is for:

  • Developers eager to pass the coding interview at huge companies like Google, Facebook, Microsoft, Amazon, etc.
  • People who want to develop their problem solving skills.
  • Developers getting ready for their technical interviews.
  • Students getting ready for their internship coding interviews.
  • People who want to get better at competitive coding