Files
Leetcode/14. Longest Common Prefix/Program.cs
Пытков Роман 1e43adf29e 14. Longest Common Prefix
2024-01-30 23:47:49 +03:00

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));