535. Encode and Decode TinyURL - Medium
前往題目
想法
- 直接產出隨機字串,然後把
longUrl
和code
做連結
思路
encode:
- 檢查是否該
longUrl
已經在資料庫,有的話回傳對應的code
- 沒有的話產生一個
code
,並且檢查是否有重複的,有的話重新生成 - 存到
map
裡
decode:
- 回傳對應的
longUrl
Code
535. Encode and Decode TinyURL - Medium
https://f88083.github.io/2024/03/29/535-Encode-and-Decode-TinyURL-Medium/