A collection of tools that help you solve daily problems.
This collection is intended to document 📝 what I already solved from the coding challenge platform either from leetcode, hackerrank, codewars, etc, and also one form of #100DaysOfCode movement 🏃♂️. If you find it useful please give it a star ⭐ or even do your contribution. Cheers 🥂
go get github.com/digi-space/digiutils
This is the basic usage, just import the library and you are ready to go.
package main
import (
"fmt"
"github.com/digi-space/digiutils"
)
func main() {
fmt.Println(digiutils.AddBinary("11", "1")) // 100
}
Digi Space – @Digisata – [email protected]
Distributed under the MIT license. See LICENSE for more information.
- Fork this repository.
- Create your own branch (
git checkout -b fooBar
). - Commit your changes (
git commit -am 'Add some fooBar'
). - Push to the branch (
git push origin fooBar
). - Create your awesome Pull Request.