6 lines
209 B
C#
6 lines
209 B
C#
// 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)); |