Given two strings, print their shortest common supersequence.
{ "s1": "abac", "s2": "cab" }
"cabac"
{ "s1": "AGGTAB", "s2": "GXTXAYB" }
"AGGXTXAYB"
{ "s1": "geek", "s2": "eke" }
"geeke"
Sign in to Run Code and Submit