11 lines
179 B
C#
11 lines
179 B
C#
using System;
|
|
|
|
namespace _8._String_to_Integer__atoi_;
|
|
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine(new Solution().MyAtoi(" "));
|
|
}
|
|
} |