Sollicitatievraag bij HCLTech

String reversal in Python, c++

Antwoorden op sollicitatievragen

Anoniem

24 sep 2021

Strrev, looping, list slicing

Anoniem

8 mrt 2025

st="abc" new_st="" for i in range(len(st)-1, -1, -1): new_st+=st[i] print(new_st)