Exemplo n.º 1
0
        static void Main(string[] args)
        {
            //MinimumDepthOfBinaryTree_111.Main123(null);

            //ReorderList_143 r = new ReorderList_143();
            //r.main();
            EncodeandDecodeTinyURL_535.main();
        }
Exemplo n.º 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);
        }