其他分享
首页 > 其他分享> > leetcode 535 TinyURL 的加密与解密 暴力 年轻人不讲武德

leetcode 535 TinyURL 的加密与解密 暴力 年轻人不讲武德

作者:互联网

leetcode 535 TinyURL 的加密与解密 暴力 年轻人不讲武德

2行代码
年轻人不讲武德,这好吗?这不好。
我劝这位年轻人耗子尾汁,好好反思!!!

class Solution {
public:

    // Encodes a URL to a shortened URL.
    string encode(string longUrl) {
        return longUrl;
    }

    // Decodes a shortened URL to its original URL.
    string decode(string shortUrl) {
        return shortUrl;
    }
};

标签:加密,string,URL,TinyURL,解密,535,leetcode
来源: https://blog.csdn.net/shooter7/article/details/110731993