summaryrefslogtreecommitdiff
path: root/radix_info.go
AgeCommit message (Collapse)Author
2023-08-21Add ln to outputAdrien Hopkins
A radix's logarithm determines how well it compresses digits - a higher logarithm means numbers will take up fewer digits. If c = log(a)/log(b), then numbers in radix b will be around c times longer than numbers in radix a.
2023-08-21Add MTC to outputAdrien Hopkins
(MTC = Multiplication Table Complexity)
2023-08-21Upgrade to Go 1.21Adrien Hopkins
Use methods from the new slices and maps modules to make my code faster and more compact.
2023-08-21Add 2345 Score to outputAdrien Hopkins
2023-08-21Add totative ratio and factor score to programAdrien Hopkins
2023-08-18Add list of factors to outputAdrien Hopkins
2023-08-18Add functionality to print prime factorizationAdrien Hopkins