예제 #1
0
파일: Program.cs 프로젝트: emacslisp/cs
        static void Main(string[] args)
        {
            //MinimumDepthOfBinaryTree_111.Main123(null);

            //ReorderList_143 r = new ReorderList_143();
            //r.main();
            EncodeandDecodeTinyURL_535.main();
        }
예제 #2
0
        public static void main()
        {
            EncodeandDecodeTinyURL_535 helper = new EncodeandDecodeTinyURL_535();
            string url          = "https://www.google.com";
            string base64Encode = helper.encode(url);

            Console.WriteLine(base64Encode);

            string base64Decode = helper.decode(base64Encode);

            Console.WriteLine(base64Decode);
        }