Browse Source

Update sametree.en.md

done with augusto
pull/380/head
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 ### Expected function
```go ```go
type TreeNodeL struct { type TreeNodeM struct {
Left *TreeNodeL Left *TreeNodeM
Val int Val int
Right *TreeNodeL Right *TreeNodeM
} }
func IsSameTree(p *TreeNodeL, q *TreeNodeL) bool { func IsSameTree(p *TreeNodeM, q *TreeNodeM) bool {
} }
``` ```

Loading…
Cancel
Save