Two Tasks

This commit is contained in:
nullptroma
2023-04-06 22:17:31 +03:00
parent 1f7d9dad1b
commit 75d2db5b75
16 changed files with 373 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace _8._String_to_Integer__atoi_;
class Program
{
static void Main(string[] args)
{
Console.WriteLine(new Solution().MyAtoi(" "));
}
}