Browse Source

fix some sintax errors

content-update
Augusto 5 years ago
parent
commit
14101bd2d0
  1. 6
      subjects/listremoveif.en.md

6
subjects/listremoveif.en.md

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

Loading…
Cancel
Save