0 out of 464 challenges solved

Reverse Strings in List

Write a Python function `reverse_string_list` that takes a list of strings as input and returns a new list where each string is reversed.

#### Example Usage
```python [main.nopy]
reverse_string_list(['Red', 'Green', 'Blue', 'White', 'Black'])
# Output: ['deR', 'neerG', 'eulB', 'etihW', 'kcalB']

reverse_string_list(['john', 'amal', 'joel', 'george'])
# Output: ['nhoj', 'lama', 'leoj', 'egroeg']

reverse_string_list(['jack', 'john', 'mary'])
# Output: ['kcaj', 'nhoj', 'yram']
```
def reverse_string_list(stringlist):
    """
    Reverses each string in the given list of strings.

    Args:
        stringlist (list of str): A list of strings to be reversed.

    Returns:
        list of str: A new list with each string reversed.
    """
    # Implement the function to reverse each string in the list
    pass