/algo

Library with widely needed algorythmic functions to work with different types of structured data

Primary LanguageGo

algo

About

Library with various arithmetic functions for structured data. Try it now!

Blocks

  • maps
  • list (funcs for working with linked lists)

Usage

package main

import (
	"github.com/gonnafaraway/algo/maps"
)

func main() {
	a := make(map[string]int)
	a["1"] = 1
	a["2"] = 4
	fmt.Println(maps.FindLargestValue(a)) // 4
}