Skip to content
View h5law's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report h5law

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
h5law/README.md

h5law's stats

Pinned

  1. pokt-network/smt pokt-network/smt Public

    A Go library that implements a Sparse Merkle Trie for a key-value map.

    Go 12 3

  2. primality primality Public

    A Go library for checking whether an integer is prime or not, using either the AKS or Miller-Rabin algorithms.

    Go

  3. Useful tools around generating and c... Useful tools around generating and checking prime numbers and factorising integers
    1
    package main
    2
    
    
    3
    import (
    4
    	"fmt"
    5
    	"math"
  4. A series of functions for computing ... A series of functions for computing the nth fibonacci number
    1
    // Package main provides numerous implementations of functions for calculating
    2
    // the nth Fibonacci number - detailing their time and space complexities as
    3
    // well as their limitations on how large of n they can actually compute.
    4
    // Playground link: https://go.dev/play/p/mW_-C9mRr5u
    5
    package main