readme updates according to issues

This commit is contained in:
miguel 2022-04-29 10:50:34 +01:00
parent a9e04d8e88
commit 548909fe89
3 changed files with 8 additions and 2 deletions

View File

@ -30,8 +30,8 @@ func main() {
piscine.BTreeInsertData(root, "7")
piscine.BTreeInsertData(root, "5")
node := piscine.BTreeSearchItem(root, "1")
replacement := &piscine.TreeNode{Data: "3"}
root = piscine.BTreeTransplant(root, node, replacement)
rplc := &piscine.TreeNode{Data: "3"}
root = piscine.BTreeTransplant(root, node, rplc)
piscine.BTreeApplyInorder(root, fmt.Println)
}
```

View File

@ -218,6 +218,9 @@ Every other notification created by you that isn't on the list is welcomed too.
- [golang-migrate](https://github.com/golang-migrate/migrate/)
- [sql-migration](https://pkg.go.dev/github.com/rubenv/sql-migrate)
- [migration](https://pkg.go.dev/github.com/Boostport/migration)
- [sqlite3](https://github.com/mattn/go-sqlite3)
- [bcrypt](https://pkg.go.dev/golang.org/x/crypto/bcrypt)
- [UUID](https://github.com/satori/go.uuid)
This project will help you learn about:

View File

@ -18,8 +18,11 @@ If `file1.txt` & `file2.txt` contains :
```
abcdefghijklmnopqrstuvwxyz
```
**Note** that the files above end with a new line.
Normal cases :
```