Skip to content

Commit

Permalink
chore: Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
cpustejovsky committed Jan 25, 2023
1 parent 2c92d96 commit 3dd7230
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
6 changes: 4 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -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=
Expand Down

0 comments on commit 3dd7230

Please sign in to comment.