Skip to content
/ primes Public
forked from otiai10/primes

Find primes, factorize numbers and reduce fractions by Golang.

Notifications You must be signed in to change notification settings

kendfss/primes

 
 

Repository files navigation

primes

Go GoDoc codecov

  • Find primary numbers
% primes p 20
[2 3 5 7 11 13 17 19]
  • Factorize numbers
% primes f 329
[7 47]
  • Reduce fractions
% primes r 144/360
2/5
  • all can be executed in go code
package main

import (
	"fmt"

	"github.com/otiai10/primes"
)

func main() {
	fmt.Println(
		primes.Until(20).List(),
		primes.Factorize(144).All(),
		primes.Factorize(144).Powers(),
	)
}

// [2 3 5 7 11 13 17 19]
// [2 2 2 2 3 3]
// map[2:4 3:2]

install

go get github.com/otiai10/primes/primes

About

Find primes, factorize numbers and reduce fractions by Golang.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%