Write a pseudocode to analyze the sentiment of a given tweet. You are provided with two lists as follows: • A list of positive words (e.g., "happy", "good", "love") • A list of negative words (e.g., "angry", "sad", "hate") Your pseudocode should take a tweet (a string of text) as input and categorize it as either "Positive," "Negative," or "Neutral" based on the number of positive and negative words it contains. For example, if given the tweet "I love the sunny weather, but I hate the traffic," your pseudocode should return "Neutral" since it contains both positive and negative words.