Giter VIP home page Giter VIP logo

algo's Introduction

Algorithms

Collection of algorithm implementations for Go.

Error detection

Damm
Damm64 (using quasigroups for character base from 3 to 64 characters)
Luhn

Math

Greatest common divisor (Euclid)

Usage

Error detection

Damm

Implementation of error detection algorithm for numeric codes from H. Michael Damm.

import "github.com/petoc/algo/damm"
damm.Calculate("123456789") // 4
damm.Validate("1234567894") // true

Damm64

Based on error detection algorithm from H. Michael Damm. Uses pre-generated quasigroups for character base from 3 to 64 characters.

import "github.com/petoc/algo/damm64"
base := "0123456789ABCDEFGHIJKLMNOPQRSTUV"
damm64.Calculate(base, "G12Q") // F
damm64.Validate(base, "G12QF") // true

Luhn

Implementation of error detection algorithm for numeric codes from Hans Peter Luhn.

import "github.com/petoc/algo/luhn"
luhn.Calculate("123456789") // 7
luhn.Validate("1234567897") // true

Math

Greatest common divisor

import "github.com/petoc/algo/gcd"
gcd.Euclid(8, 12) // 4

Sources

Damm Quasigroups (http://www.md-software.de/math/DAMM_Quasigruppen.txt)

License

Licensed under MIT license.

algo's People

Contributors

petoc avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.