Question d’entretien chez Tripadvisor

Convert an int to a string without casting

Réponses aux questions d'entretien

Utilisateur anonyme

10 oct. 2018

chr(48 + number). using ascii values

Utilisateur anonyme

22 mai 2015

The question was asked for Python, so I'm not sure what other solutions would look like.

Utilisateur anonyme

22 mai 2015

Given int i String str = "" + i; Is this solution to simple?