Tip 1 : practice company specific questions
Tip 2 : revise old concepts
Tip 1 : not applicable
Tip 2 : There was no resume screening for this contest





In the above image, areas in green, red, and violet color are all submatrices of the original 4x4 matrix.
1. Binary valued matrix has only two values in each cell : 0 and 1.
2. A submatrix is a matrix formed by selecting certain rows and columns from a larger matrix.
3. The area of a matrix with 'h' rows and 'w' columns is equal to 'h' * 'w'.

For the array [3 2 1]
All the subarrays of size at least 2 are:
[3 2], [2 1], [3 2 1]
For the first subarray, the smallest and second smallest elements are 2 and 3, and their sum is 5.
For the second subarray, the smallest and second smallest elements are 1 and 2, and their sum is 3.
For the third subarray, the smallest and second smallest elements are 1 and 2, and their sum is 3.
So the maximum among these sums is 5.



For the given string “what we think we become”
“what”,” think”, and “become” occurs 1 time, and “we” occurs 2 times in the given string.
Made a string,int map for frequency of words. and iterated through the string keeping track of starting and ending index of a word and extracting substrings using these indices.
If a delimiter like space or comma, or fullstop comes then that means word is ending.



Graph.
Detailed discussion of projects on my resume and related questions
1. What is a crosscompiler
2. What is typescript, how is it different from js.
3. Can browsers run ts directly
4. Types of storage available on web browsers
Tip 1 : project knowledge should be strong and you should know why a certain thing was used or what are different ways to do it.
Tip 2 : revise concepts used in your project throughly for eg if it is a web project then revise the frameworks etc being used

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: