コード例 #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);
        }