Browse Source

Merge pull request #237 from 01-edu/list-remove-if-fix

fix some sintax errors
content-update
LEEDASILVA 5 years ago committed by GitHub
parent
commit
3d50a63731
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      subjects/listremoveif.en.md

6
subjects/listremoveif.en.md

@ -1,4 +1,4 @@
## listpushback
## listremoveif
### Instructions
@ -8,8 +8,8 @@ Write a function `ListRemoveIf` that removes all elements that are equal to the
```go
type NodeL struct {
data interface{}
next *NodeL
Data interface{}
Next *NodeL
}
type List struct {

Loading…
Cancel
Save