Unit 3 Session 2 (Click for link to problem statements)
Understand what the interviewer is asking for by using test cases and questions about the problem.
Plan the solution with appropriate visualizations and pseudocode.
General Idea: For each character in the string, convert to integer and add to an output list.
1) Create an empty result list
2) For each character
  a) Convert that character to an int
  b) Add that int to the result list
3) Return the result list⚠️ Common Mistakes
def string_to_integer_mapping(s):
    # Initialize an empty list to hold the integer values
    result = []
    # Iterate through each character in the string
    for char in s:
        # Convert the character to an integer and append it to the result list
        result.append(int(char))
    # Return the result list
    return result