mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-09 03:59:38 +08:00
Update EulersFunction.java
This commit is contained in:
@ -1,4 +1,5 @@
|
|||||||
//You can read more about Euler's totient function https://en.wikipedia.org/wiki/Euler%27s_totient_function
|
// You can read more about Euler's totient function
|
||||||
|
// https://en.wikipedia.org/wiki/Euler%27s_totient_function
|
||||||
public class EulersFunction {
|
public class EulersFunction {
|
||||||
// This method returns us number of x that (x < n) and gcd(x, n) == 1 in O(sqrt(n)) time complexity;
|
// This method returns us number of x that (x < n) and gcd(x, n) == 1 in O(sqrt(n)) time complexity;
|
||||||
public static int getEuler(int n) {
|
public static int getEuler(int n) {
|
||||||
|
Reference in New Issue
Block a user