Last active
July 12, 2021 23:30
-
-
Save scott1028/015fb60197b9a125235cd4737a5ea65e to your computer and use it in GitHub Desktop.
TEST-01: Input String
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```js | |
/* | |
to input string with some particular character which is treated as "backespace" and caculate the final output. | |
ex: `112233###5566#` => `112556` | |
ex: `####1122#33` => `11233` | |
ex: `11########` => `` | |
*/ | |
function main(value) { | |
// TODO | |
} | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment