I hereby claim:
- I am danielrangelmoreira on github.
- I am danielrangel (https://keybase.io/danielrangel) on keybase.
- I have a public key ASBXWaRcYRFi-X9IvsNKjfVxst5AUGHUY_uZGoeWrdpH2Ao
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
"math/big" | |
) | |
func fib(n int) *big.Int { | |
fn := make([]*big.Int, n+1) | |
for i := 0; i <= n; i++ { |
package main | |
import "sort" | |
import "fmt" | |
func main() { | |
data := []int{20, 21, 22, 24, 25, 26, 28, 29, 30, 31, 32} | |
var items = []int{23, 27} | |
for _, x := range items { |
package main | |
import "fmt" | |
func generate(n int, a []int64) { | |
var c = make([]int, n) | |
fmt.Println(a) | |
i := 0 | |
for i < n { | |
if c[i] < i { |
/* | |
* Go implementation of Euler's product formula to find for the totient function (aka. phi function) | |
* https://en.wikipedia.org/wiki/Euler's_totient_function#Euler.27s_product_formula | |
*/ | |
package main | |
import ( | |
"fmt" | |
) |
package main | |
import ( | |
"fmt" | |
//"math" | |
) | |
func main() { | |
const ( | |
x0 = 54777 |
I hereby claim:
To claim this, I am signing this object: