Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Go
import "math/big"
x := new(big.Int)
x.Exp(big.NewInt(3), big.NewInt(247), nil)

The nil argument means we don't want a modulo.
using System.Numerics;
var x = BigInteger.Pow(3, 247);

New implementation...