Skip to content

Instantly share code, notes, and snippets.

@scott1028
Last active July 12, 2021 23:30
Show Gist options
  • Save scott1028/015fb60197b9a125235cd4737a5ea65e to your computer and use it in GitHub Desktop.
Save scott1028/015fb60197b9a125235cd4737a5ea65e to your computer and use it in GitHub Desktop.
TEST-01: Input String
```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