fix(curriculum): separate tag into two (#44281)

This commit is contained in:
Dhananjay Mahajan
2021-11-30 01:27:41 +05:30
committed by GitHub
parent ad730dc84b
commit 1b8f006669

View File

@ -8,7 +8,7 @@ dashedName: problem-124-ordered-radicals
# --description--
The radical of $n, rad(n)$, is the product of the distinct prime factors of $n$. For example, $504 = 2^3 × 3^2 × 7$, so $rad(504) = 2 × 3 × 7 = 42$.
The radical of $n$, $rad(n)$, is the product of the distinct prime factors of $n$. For example, $504 = 2^3 × 3^2 × 7$, so $rad(504) = 2 × 3 × 7 = 42$.
If we calculate $rad(n)$ for $1 ≤ n ≤ 10$, then sort them on $rad(n)$, and sorting on $n$ if the radical values are equal, we get: