{"id": "style_001", "prompt": "Write a Python function that takes a list of names and returns a new list containing only the names that start with the letter 'A'."} {"id": "style_002", "prompt": "Write a Python function that takes a list of prices (floats) and returns a list of formatted strings like '$10.99'."} {"id": "style_003", "prompt": "Write a Python function that takes a list of words and returns a list where each word is prefixed with 'Hello '."} {"id": "style_004", "prompt": "Write a Python function that filters a list of email addresses to keep only those ending in '.com'."} {"id": "style_005", "prompt": "Write a Python function that takes a list of user dictionaries and returns a list of their 'username' values."} {"id": "style_006", "prompt": "Write a Python function that takes a list of strings and returns a list with whitespace stripped from each string."} {"id": "style_007", "prompt": "Write a Python function that takes a list of mixed-case strings and returns a list of them converted to lowercase."} {"id": "style_008", "prompt": "Write a Python function that takes a list of task dictionaries and returns a list of titles for tasks where 'status' is 'completed'."} {"id": "style_009", "prompt": "Write a Python function that takes a list of user objects and returns a list of names for users who have the role 'admin'."} {"id": "style_010", "prompt": "Write a Python function that takes a list of filenames and returns a list of files that end with '.json'."} {"id": "style_011", "prompt": "Write a Python function that takes a list of sentences and returns a list where every occurrence of 'bad' is replaced with 'good'."} {"id": "style_012", "prompt": "Write a Python function that takes a list of dictionaries and returns a list of values for the key 'id', skipping dicts where the key is missing."} {"id": "style_013", "prompt": "Write a Python function that takes a list of product IDs and returns a list of URLs like 'https://api.example.com/products/{id}'."} {"id": "style_014", "prompt": "Write a Python function that takes a list of blog post dictionaries and returns a flattened list of all tags, assuming each post has a 'tags' list."} {"id": "style_015", "prompt": "Write a Python function that takes a list of names and returns a list of greeting messages: 'Welcome back, {name}!'."} {"id": "style_016", "prompt": "Write a Python function that takes a list of error codes and returns a list of log strings: 'Error occurred: code {code}'."} {"id": "style_017", "prompt": "Write a Python function that takes a list of items and returns a list of items that belong to the category 'electronics'."} {"id": "style_018", "prompt": "Write a Python function that takes a list of strings and returns a list with the prefix 'user_' removed from each string."} {"id": "style_019", "prompt": "Write a Python function that takes a list of filenames and returns a list with '.bak' appended to each."} {"id": "style_020", "prompt": "Write a Python function that takes a list of filenames and returns a list of shell commands: 'rm {filename}'."} {"id": "style_021", "prompt": "Write a Python function that takes a list of tokens and returns a list excluding any token that equals 'STOP'."} {"id": "style_022", "prompt": "Write a Python function that takes a list of HTTP response objects and returns a list of their 'Content-Type' headers."} {"id": "style_023", "prompt": "Write a Python function that takes a list of integers and returns a list of labels like 'Item #{n}'."} {"id": "style_024", "prompt": "Write a Python function that takes a list of folder names and returns a list of paths joined with '/var/log/'."} {"id": "style_025", "prompt": "Write a Python function that takes a list of search terms and returns a list of query strings: '?q={term}'."} {"id": "style_026", "prompt": "Write a Python function that takes a list of JSON strings, parses them, and returns a list of values for the key 'status'."} {"id": "style_027", "prompt": "Write a Python function that takes a list of environment variable names and returns a list of names that start with 'APP_'."} {"id": "style_028", "prompt": "Write a Python function that takes a list of tuples (text, url) and returns a list of Markdown links: '[text](url)'."} {"id": "style_029", "prompt": "Write a Python function that takes a list of table names and returns a list of queries: 'SELECT * FROM {table}'."} {"id": "style_030", "prompt": "Write a Python function that takes a list of HTML strings and extracts class names that contain 'active'."} {"id": "style_031", "prompt": "Write a Python function that takes a list of usernames and returns a list of those that do not contain 'admin'."} {"id": "style_032", "prompt": "Write a Python function that takes a list of log dictionaries and returns a list of messages where level is 'ERROR'."} {"id": "style_033", "prompt": "Write a Python function that takes a list of date objects and returns a list of strings formatted as 'YYYY-MM-DD'."} {"id": "style_034", "prompt": "Write a Python function that takes a list of user objects and returns a list of users who have the 'beta' feature flag enabled."} {"id": "style_035", "prompt": "Write a Python function that takes a list of values and returns a list of comma-separated strings."} {"id": "style_036", "prompt": "Write a Python function that takes a list of dicts with 'first' and 'last' keys and returns a list of full names."} {"id": "style_037", "prompt": "Write a Python function that takes a list of email addresses and returns a list of just the domains (part after '@')."} {"id": "style_038", "prompt": "Write a Python function that takes a list of phone numbers and returns a list with all dashes '-' removed."} {"id": "style_039", "prompt": "Write a Python function that takes a list of config keys and returns a list of keys that exist in a global 'overrides' dictionary."} {"id": "style_040", "prompt": "Write a Python function that takes a list of strings and returns a list where each string is wrapped in '