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…
