Browse Source

Update sametree.en.md

content-update
Christopher Fremond 4 years ago committed by GitHub
parent
commit
c7a120b228
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      subjects/sametree.en.md

4
subjects/sametree.en.md

@ -22,14 +22,14 @@ Write a function, `IsSameTree`, that returns `bool`.
### Expected function
```go
type TreeNodeM struct {
type TreeNodeL struct {
Left *TreeNodeM
Val int
Right *TreeNodeM
}
func IsSameTree(p *TreeNodeM, q *TreeNodeM) bool {
func IsSameTree(p *TreeNodeL, q *TreeNodeL) bool {
}
```

Loading…
Cancel
Save