E Commerce Web development

Job ID: 30923632

Budget: $50 – $0 USD

E Commerce Web development

Please fill below information to review.





Question Sheet



What is a situation where you had to solve a tough engineering problem?


What was the problem?





What did you do to solve it?





What was the outcome?









An enterprise company is interested in building a web service complete with front-end website. You are hired to do the job. What are the considerations and tradeoffs that you consider to do the job?


3.



Given two strings, determine if they share a common substring. A substring may be as small as one character.

Example:

String1 = “art”

String 2 = “ammo”

Both string share ‘a’, so return true;

Example 2:

String1 = “be”

String 2 = “cat”

No characters are shared, so return false;



Bonus: Can you return the length of the longest substring shared by the two strings?

Example:

S1 = “wonderful”

S2 = “fulsome”

Both words share “ful”, so return 3