Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
#Japt -h, 9 7 bytes
-h
k ü mÊn
Try it
k ü mÊn :Implicit input of integer k :Prime factors ü :Group by value m :Map Ê : Length n :Sort :Implicit output of last element
#Japt -h, 9 87 bytes
k ü mÊrwmÊn
Try itTry it
k ü mÊrwmÊn :Implicit input of integer k :Prime factors ü :Group by value m :Map Ê : Length r n :Reduce bySort w :Implicit output Maximumof last element
#Japt, 9 8 bytes
k ü mÊrw
k ü mÊrw :Implicit input of integer k :Prime factors ü :Group by value m :Map Ê : Length r :Reduce by w : Maximum
#Japt#Japt, 99 8 bytes
k ò¦ü mÊrw
##ExplanationTry it
k
ò¦
mÊ
rw
#Japt, 9 bytes
k ò¦ mÊrw
##Explanation