Cisco Networking Academy Interview Experience for Fresher SDE - 1,
Jul 2019
This round consist of 2 coding questions and they were of good level based on strings and dynamic programming.
Return the length of the longest substring consisting of unique characters.
eg: abcabcdb ------> 4 4 corresponds to abcd
aaaaaxxxxxxwyzzzzzxxxxx ------> 4 4 corresponds to xwyz
Given an arithmetic expression containing '+', '-', '*' operators, generate a string by placing parenthesis in the given expression which will return the the maximum possible value of that expression.
eg: I/p -------> 8+4*2 O/p ------> ((8+4)*2) corresponding to a max value of 24
I/p -------> 5-8+7*4-8*9 O/p ------> (5 - ((8 + 7)*(4 - (8*9...
congratulations sister