Browse Source

Update sametree.en.md

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

8
subjects/sametree.en.md

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

Loading…
Cancel
Save