From 3dd7230883553e606ea67d44b826d683d848cbb9 Mon Sep 17 00:00:00 2001 From: cpustejovsky Date: Wed, 25 Jan 2023 17:25:19 -0500 Subject: [PATCH] chore: Update README --- README.md | 7 +------ go.mod | 6 ++++-- go.sum | 2 ++ 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index c6c5c9c..dc26eb8 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,8 @@ # Custom Sort Go (CS:GO) ![csgo300](https://user-images.githubusercontent.com/24833119/201412479-de8f5718-0b42-48d3-94d5-6b849597a654.png) -Aside from my punny acronym, this library is to have a collection of custom applications of the [sort package](https://golang.org/pkg/sort) +Aside from my punny acronym, this library is to have a collection of custom applications of the [sort package](https://golang.org/pkg/sort) and other sorting algorithms. -I'm not a big fan of Leetcode style coding challenges becuase it just doesn't seem to reflect how I provide value as a developer. - -Having pre-written code to allow me to provide value more effectively is, however. - -Plan on using this library either by importing the module or copying and pasting for various code challenges to see how they do. ## Use diff --git a/go.mod b/go.mod index 7ad0301..db25e1e 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,10 @@ -module github.com/cpustejovsky/customsortgo/v1.0.0 +module github.com/cpustejovsky/customsortgo go 1.19 -require github.com/stretchr/testify v1.8.0 +require ( + github.com/stretchr/testify v1.8.0 +) require ( github.com/davecgh/go-spew v1.1.1 // indirect diff --git a/go.sum b/go.sum index 5164829..6821f4e 100644 --- a/go.sum +++ b/go.sum @@ -1,3 +1,5 @@ +github.com/cpustejovsky/customsortgo v0.0.0-20221122185649-ed8043f1f21b h1:0x0yk61HzS41mYWuoW2DrWsi8glKWOgzkjoGl1sYMpY= +github.com/cpustejovsky/customsortgo v0.0.0-20221122185649-ed8043f1f21b/go.mod h1:0t3kXGof8qwXhQ4D8BKIZNHDv3Nuto3t6nt0WplZa1w= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=