Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 593 Bytes

File metadata and controls

32 lines (22 loc) · 593 Bytes

659 · Encode and Decode Strings Algorithms

  • Medium

Design an algorithm to encode a list of strings to a string. The encoded string is then sent over the network and is decoded back to the original list of strings.

Please implement encode and decode

Example1

  Input: ["lint","code","love","you"]

  Output: ["lint","code","love","you"]

Explanation:

  One possible encode method is: "lint:;code:;love:;you"

Example2

  Input: ["we", "say", ":", "yes"]

  Output: ["we", "say", ":", "yes"]

Explanation:

  One possible encode method is: "we:;say:;:::;yes"