Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialTimothy Tseng
3,292 PointsIn this video how is count updating when you add?
How is count updating every time he adds, in the constructor he sets .__count = 0, and that's it... does it have something to do with the double underscores?
1 Answer
Steven Parker
231,184 PointsThis seems like a bug. You can report it to the staff as described on the Support page.
But also note that the code shown in the video (and in the project file download) is significantly different in that it both creates and increments "count" (with no underscores) in the "size" method.
Timothy Tseng
3,292 PointsTimothy Tseng
3,292 PointsThis is the code I'm referring to...
class Node: """ An object for storing a single node in a linked list
class SinglyLinkedList: """ Linear data structure that stores values in nodes. The list maintains a reference to the first node, also called head. Each node points to the next node in the list