leetcode(리트코드)3월15일 challenge535-Encode and Decode TinyURL
leetcode(리트코드)3월15일 challenge535-Encode and Decode TinyURL
leetcode March 15일 - Encode and Decode TinyURL 문제입니다.
1. 문제
https://leetcode.com/problems/encode-and-decode-tinyurl/
2. Input , Output
3. 분류 및 난이도
Medium 난이도입니다.
3월 15일자 챌린지 문제입니다.
4. 문제 해석
- 좋지 않은 문제입니다. 사실 해석도 못했습니다.
- 그래서 그런지 Bad수가 많습니다.
5. code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
}
};
// Your Solution object will be instantiated and called as such:
// Solution solution;
// solution.decode(solution.encode(url));
6. 결과 및 후기, 개선점
c++ 100%
This post is licensed under CC BY 4.0 by the author.