...

/

Challenge: Shortest Common Supersequence(SCS)

Challenge: Shortest Common Supersequence(SCS)

Given two strings, let's write a function to find their shortest common supersequence.

Problem statement

Given two strings, write a function to find the length of their shortest common superstring. A superstring is a string which has both input strings as substrings. ...