#248. stringBits
stringBits
Background
Description
Given a string, return a new string made of every other char starting with the first, so "Hello" yields "Hlo".
Format
Input
Output
Samples
Hello
"Hlo"
Hi
"H"
Heeololeo
"Hello"
Limitation
1s, 1024KiB for each test case.