{ "prompt": "Write a Python function that reverses a string.", "expected": "def reverse_string(s):\n return s[::-1]" }