Given a positive integer n > 2, return a vector, v, of positive integers smaller than n that are primitive roots modulo n. If no integers satisfy the requirements, return an empty variable.
Example:
n = 5;
v = [2, 3]

Solution Stats

12 Solutions

8 Solvers

Last Solution submitted on Aug 10, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...