aboutsummaryrefslogtreecommitdiffstats
path: root/535
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-04-24 18:02:12 +0000
committerterminaldweller <thabogre@gmail.com>2022-04-24 18:02:12 +0000
commit9808196ebbe8d815c3fa2458462f58a9349c87c2 (patch)
tree7f7e9ada1b678aa7120a6de021189ca531966272 /535
parentupdate (diff)
downloadleetcode-9808196ebbe8d815c3fa2458462f58a9349c87c2.tar.gz
leetcode-9808196ebbe8d815c3fa2458462f58a9349c87c2.zip
update
Diffstat (limited to '535')
-rw-r--r--535/main.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/535/main.go b/535/main.go
index 425f9d5..a5e11ef 100644
--- a/535/main.go
+++ b/535/main.go
@@ -28,7 +28,6 @@ func (this *Codec) encode(longUrl string) string {
// Decodes a shortened URL to its original URL.
func (this *Codec) decode(shortUrl string) string {
return this.table[shortUrl[19:]]
-
}
/**