Daily challenge for 2026-03-26
450. Count Negative Numbers
Given a list of integers, count how many of them are strictly less than zero.
Example:Input: nums = [4, -1, 0, -5]Output: 2
Run this challenge interactively in Python or JavaScript when the app loads.