For the best experience, increase the window size or view on a laptop or desktop device
Last updated: Pending
Title | ||
|---|---|---|
Loading... | ||
1/1
No questions are available yet
For the best experience, increase the window size or view on a laptop or desktop device
Title | ||
|---|---|---|
Loading... | ||
Given the following:
A - 0
B - 111
C - 1100
D - 1101
E - 10100
F - 10010
So "BAD" => "11101101" based on the encoding scheme.
Implement a decoder for the above encoding scheme.
Example:
decoder("11101101") => "BAD".
Given the following:
A - 0
B - 111
C - 1100
D - 1101
E - 10100
F - 10010
So "BAD" => "11101101" based on the encoding scheme.
Implement a decoder for the above encoding scheme.
Example:
decoder("11101101") => "BAD".
Output