Skip to content

Commit

Permalink
Merge pull request #1082 from Alexdat2000/patch-1
Browse files Browse the repository at this point in the history
Update euler_totient_function.clj
  • Loading branch information
solar05 authored Jun 10, 2024
2 parents 31f8951 + 774908b commit e68fee3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/battle_asserts/issues/euler_totient_function.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

(def description
{:en "Two numbers are coprime if their greatest common divisor equals 1.
Implement the Euler's totient function f(x), which is defined as the number of positive integers less than x which are coprime to x."
Implement the Euler's totient function f(x), which is defined as the number of positive integers less than or equal to x which are coprime to x."
:ru "Два числа являются взаимно простыми, если их наибольший общий делитель равен 1.
Реализуйте функцию Эйлера f(x), которая определяет количество положительных целых чисел меньше x, взаимно простых с x."})
Реализуйте функцию Эйлера f(x), которая определяет количество положительных целых чисел меньше или равных x, взаимно простых с x."})

(def signature
{:input [{:argument-name "num" :type {:name "integer"}}]
Expand Down

0 comments on commit e68fee3

Please sign in to comment.