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,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>_14._Longest_Common_Prefix</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>