From 33742f71ef7662fa0300e66b0c71672d294d5527 Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Thu, 5 Dec 2019 14:59:11 +0000 Subject: [PATCH] Update sametree.en.md done with augusto --- subjects/sametree.en.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subjects/sametree.en.md b/subjects/sametree.en.md index 9418f2d16..4cc8f939f 100644 --- a/subjects/sametree.en.md +++ b/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 { } ```