Daily challenge for 2025-02-06
37. Count Prime Numbers
Write a function solve that counts the number of prime numbers less than n.
Example:Input: 10Output: 4Explanation: 2, 3, 5, 7 are prime numbers less than 10
Run this challenge interactively in Python or JavaScript when the app loads.