...

/

Reverse String

Reverse String

This lesson teaches us how to reverse a string using a stack in Python.

In Python, you can reverse a string very easily. For example,

Press + to interact
input_str = "Educative"
print(input_str[::-1])

However, if you are required to reverse a string using a stack, you can make use of the following algorithm illustrated in the slides below:

Algorithm

Isn’t the algorithm pretty straightforward? We ...