Skip to Content
PracticeProblems.org
PracticeProblems.org
Toggle Menu
Search Problems...
⌘
K
Coding Interviews: Math
Collapse
All Coding Interviews
Simple Data Structures
Searching and Sorting
Arrays and Strings
Stacks and Queues
Greedy Algorithms
Dynamic Programming
Graphs
Complex Data Structures
Math
Miscellaneous
System Design
Count prime numbers - Sieve of Eratosthenes
Given an integer n, return
the number of prime numbers that are strictly less than
n.
Math
Medium
Video
Python
Code Solution
1