diff --git a/README.md b/README.md index 44cee34..743c487 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Code Forces Solutions +# Newton My set of solutions to the problems on Code Forces. ## Solutions - [2044B Normal Problem](https://codeforces.com/problemset/problem/2044/B) diff --git a/mdcompose/main.go b/mdcompose/main.go index eb5cf7d..f8425dc 100644 --- a/mdcompose/main.go +++ b/mdcompose/main.go @@ -91,7 +91,7 @@ func main() { } defer file.Close() - file.WriteString("# Code Forces Solutions\nMy set of solutions to the problems on Code Forces.\n## Solutions\n") + file.WriteString("# Newton\nMy set of solutions to the problems on Code Forces.\n## Solutions\n") for _, line := range solved { _, err := file.WriteString(line + "\n")