ctf-resources/htb/hacktheboo2024/coding/[Very Easy] reversal
2024-10-23 11:10:43 +02:00
..
challenge added official hacktheboo2024 writeups 2024-10-23 11:10:43 +02:00
solutions added official hacktheboo2024 writeups 2024-10-23 11:10:43 +02:00
build_docker.sh added official hacktheboo2024 writeups 2024-10-23 11:10:43 +02:00
Dockerfile added official hacktheboo2024 writeups 2024-10-23 11:10:43 +02:00
notes.md added official hacktheboo2024 writeups 2024-10-23 11:10:43 +02:00
README.md added official hacktheboo2024 writeups 2024-10-23 11:10:43 +02:00

img

Reversal

1st October 2024

Prepared By: ir0nstone

Challenge Author(s): ir0nstone

Difficulty: Very Easy

Synopsis

Given a string, return the reverse of the string.

Skills Required

  • Basic Python

Solution

We take in the string, and then we reverse it.

s = input()

print(s[::-1])