Talk:Same fringe: Difference between revisions

Content added Content deleted
(→‎Pythons binary tree representation: can already use general trees if you like)
Line 56: Line 56:


::::Well, sure, but who am I to argue with John McCarthy, who proposed that very solution? <tt>:-)</tt> See about 1/3 the way down [http://c2.com/cgi/wiki?SameFringeProblem this article]. --[[User:TimToady|TimToady]] 07:05, 15 August 2012 (UTC)
::::Well, sure, but who am I to argue with John McCarthy, who proposed that very solution? <tt>:-)</tt> See about 1/3 the way down [http://c2.com/cgi/wiki?SameFringeProblem this article]. --[[User:TimToady|TimToady]] 07:05, 15 August 2012 (UTC)

==Copy problem in D entry?==
I am not a D programmer but I see
<lang d>const t1 = n(10, n(20, n(30, n(40), n(50))));
...
const t2 = n(1, n(2, n(3, n(40), n(50))));
'''
sameFringe(t1, t2): true</lang>

I was just wondering about the 10, 20, 30 and 1, 2, 3? --[[User:Paddy3118|Paddy3118]] 19:49, 18 August 2012 (UTC)