14. Longest Common Prefix

This commit is contained in:
Пытков Роман
2024-01-30 23:47:49 +03:00
parent 66ea6b80f4
commit 1e43adf29e
5 changed files with 125 additions and 19 deletions

View File

@@ -0,0 +1,6 @@
// See https://aka.ms/new-console-template for more information
using _14._Longest_Common_Prefix;
string[] strs = ["flower", "flow", "flight"];
Console.WriteLine(new Solution().LongestCommonPrefix(strs));