Aloha. Continue trying to solve easy problems. I think I will solving easy problems for two month.
https://telegra.ph/Richest-Customer-Wealth-07-22
https://telegra.ph/Richest-Customer-Wealth-07-22
Telegraph
Richest Customer Wealth
You are given an m x n integer grid accounts where accounts[i][j] is the amount of money the ith customer has in the jth bank. Return the wealth that the richest customer has. A customer's wealth is the amount of money they have…
👍2
Aloha. Pretty popular problem --> https://telegra.ph/Fizz-Buzz-07-23
Telegraph
Fizz Buzz
Given an integer n, return a string array answer (1-indexed) where: answer[i] == "FizzBuzz" if i is divisible by 3 and 5. answer[i] == "Fizz" if i is divisible by 3. answer[i] == "Buzz" if i is divisible by 5. answer[i] == i (as a string) if none of the above…
Aloha guys. Additioonal weekend problem. I got this problem on one of the MANGA (FAANG) interview.
https://telegra.ph/Add-Binary-07-23
https://telegra.ph/Add-Binary-07-23
Telegraph
Add Binary
Given two binary strings a and b, return their sum as a binary string. Example 1: Input: a = "11", b = "1" Output: "100" Example 2: Input: a = "1010", b = "1011" Output: "10101" Hm, this problem was marked as easy, but for me, it was a brain fucker problem.…
Aloha. New day new problem. Read and enjoy --> https://telegra.ph/Palindrome-Number-07-26
Telegraph
Palindrome Number
Given an integer x, return true if x is palindrome integer. An integer is a palindrome when it reads the same backward as forward. For example, 121 is a palindrome while 123 is not. Example 1: Input: x = 121 Output: true Explanation: 121 reads as 121 from…
Ааалоха гайз. Да да по мимо задач мы ещё и про Java немного говорим. Да, да к собесам готовимся.
---
Aloha. Continue talking about Java. Do you know what a static class is?
--- https://vt.tiktok.com/ZSRFPFqLo/?k=1
---
Aloha. Continue talking about Java. Do you know what a static class is?
--- https://vt.tiktok.com/ZSRFPFqLo/?k=1
👍2
Алоха. Если кто готовится в Sys Design интервью. То могу порекомендовать этот канал - https://www.youtube.com/watch?v=bUHFg8CZFws
Все обьясняется достаточно понятно. Единственное это просто сильнейший "рашн акцент"
Все обьясняется достаточно понятно. Единственное это просто сильнейший "рашн акцент"
YouTube
System Design Interview – Step By Step Guide
Please check out my other video courses here: https://www.systemdesignthinking.com
Topics mentioned in the video:
- Stages of a typical system design interview: functional requirements (API), non-functional requirements, high-level design, detailed design…
Topics mentioned in the video:
- Stages of a typical system design interview: functional requirements (API), non-functional requirements, high-level design, detailed design…
👍4
Aloha. Continue solving easy problems --> https://telegra.ph/Number-of-Steps-to-Reduce-a-Number-to-Zero-07-27
Telegraph
Number of Steps to Reduce a Number to Zero
https://leetcode.com/problems/number-of-steps-to-reduce-a-number-to-zero/ Given an integer num, return the number of steps to reduce it to zero. In one step, if the current number is even, you have to divide it by 2, otherwise, you have to subtract 1 from…
Алоха ребята. Сегодня мы разбираем супер популярный подход. Задачи с таким подходом частенько попадаются на интервью. Очень важно проработать этот подход на самых простых задачах. Этот подход называется "two pointers".
---
Aloha guys. Today we are talking about super popupal approach: two pointers.
---
https://telegra.ph/Middle-of-the-Linked-List-07-28
---
Aloha guys. Today we are talking about super popupal approach: two pointers.
---
https://telegra.ph/Middle-of-the-Linked-List-07-28
Telegraph
Middle of the Linked List
https://leetcode.com/problems/middle-of-the-linked-list/ Given the head of a singly linked list, return the middle node of the linked list. If there are two middle nodes, return the second middle node. Example 1: Input: head = [1,2,3,4,5] Output: [3,4,5]…
Алоха малоха, кто не лайкнет👍 тот картоха. Сегодня снова попалась задача с достаточно популярными подходами, которые встречаются на интервью. Мы рассмотрим map + char manipulations. https://telegra.ph/Ransom-Note-07-29
Telegraph
Ransom Note
https://leetcode.com/problems/ransom-note/ Given two strings ransomNote and magazine, return true if ransomNote can be constructed by using the letters from magazine and false otherwise. Each letter in magazine can only be used once in ransomNote. Example…
👍12😁1
