Skip to main content
Commonmark migration
Source Link

#Axiom, 61 bytes

Axiom, 61 bytes

f n==(a:=factors n;reduce(max,[a.i.exponent for i in 1..#a])) 

This is the first time i find it is possible define the function without the use of () parenthesis. Instead of "f(n)==" "f n==" one character less...

#Axiom, 61 bytes

f n==(a:=factors n;reduce(max,[a.i.exponent for i in 1..#a])) 

This is the first time i find it is possible define the function without the use of () parenthesis. Instead of "f(n)==" "f n==" one character less...

Axiom, 61 bytes

f n==(a:=factors n;reduce(max,[a.i.exponent for i in 1..#a])) 

This is the first time i find it is possible define the function without the use of () parenthesis. Instead of "f(n)==" "f n==" one character less...

Source Link
user58988
user58988

#Axiom, 61 bytes

f n==(a:=factors n;reduce(max,[a.i.exponent for i in 1..#a])) 

This is the first time i find it is possible define the function without the use of () parenthesis. Instead of "f(n)==" "f n==" one character less...