# 力扣535. TinyURL 的加密与解密


## 力扣535. Encode and Decode TinyURL（TinyURL 的加密与解密）

设计 TinyURL 编解码。

示例 1：

![](../posts/01_学习/87_LeetCode/0535_TinyURL加密与解密/img/535-1-description.png)

```
输入：url = "https://leetcode.com/problems/design-tinyurl"
输出："https://leetcode.com/problems/design-tinyurl"
```

提示：
- 详见原题。

