aboutsummaryrefslogtreecommitdiffstats
path: root/big.go
blob: 71e7573e12d88a35f5f6c873a940bf908827b649 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package main

import (
  "math/big"
)

func BigPow(a,b int) *big.Int {
  c := new(big.Int)
  c.Exp(big.NewInt(int64(a)), big.NewInt(int64(b)), big.NewInt(0))

  return c
}

func Big(num string) *big.Int {
  n := new(big.Int)
  n.SetString(num, 0)

  return n
}