Python Course
Previous Task
Next Task
0.0052 seconds
EN
|
RU
TT
ESC
Implement Data Structures
Problem
Difficulty
Status
Find the N-th Fibonacci Number
Not Completed
Find the N-th Fibonacci Number - Recursive Approach
Not Completed
Reverse a String
Not Completed
Find Maximum in a List
Not Completed
Sum of Elements in a List
Not Completed
Find Duplicates in a List
Not Completed
Merge Two Sorted Lists
Not Completed
Count Frequency of Elements
Not Completed
Question
Show Code Editor
Clues from AI
Submissions
Reverse a String
Write a function (def reverseString(s)) that takes a string and returns the reversed string.
Give me clue (but not answer) about the task
Assistant
ADVANCED
Send
There are no submissions yet. Press Submit button.
main.py
Show Task Description
Verify Code
Run Code
Submit Task
Ask AI for clue
def reverseString(s): return s[::-1] print(reverseString("hello"))
Running...