employer cover photo
employer logo

Pregunta de entrevista de VMware

Given a string replace all the white spaces by "%20".

Respuestas de entrevistas

Anónimo

10 may 2015

Coded that easily.

Anónimo

24 ene 2017

x = "Hi, How are you ?" def change (x): y = x.split(" ") return "%20".join(y) change(x)