-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecodeMyRemix.js( song decode).js
More file actions
16 lines (9 loc) · 1013 Bytes
/
decodeMyRemix.js( song decode).js
File metadata and controls
16 lines (9 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//problem desc
///Polycarpus works as a DJ in the best Berland nightclub, and he often uses dubstep music in his performance. Recently, he has decided to take a couple of old songs and make dubstep remixes from them.
//Let's assume that a song consists of some number of words (that don't contain WUB). To make the dubstep remix of this song, Polycarpus inserts a certain number of words "WUB" before the first word of the song (the number may be zero), after the last word (the number may be zero), and between words (at least one between any pair of neighbouring words), and then the boy glues together all the words, including "WUB", in one string and plays the song at the club.
//For example, a song with words "I AM X" can transform into a dubstep remix as "WUBWUBIWUBAMWUBWUBX" and cannot transform into "WUBWUBIAMWUBX".///
//let song = "WUBIWUBAMWUBGIFTWUBWUB";
const decodeSong = (songName)=>{
return songName.replaceAll('WUB',' ').trim();
}
console.log(decodeSong("WUBIWUBAMWUBGIFTWUBWUB"));