Unit 5 Session 1 (Click for link to problem statements)
Understand what the interviewer is asking for by using test cases and questions about the problem.
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Utilize the provided Node class to create two separate nodes, each initialized with specific values, and store them in designated variables.
1) Instantiate a node with the value 'a' and store it in the variable `node_one`.
2) Instantiate another node with the value 'b' and store it in the variable `node_two`.
⚠️ Common Mistakes
node_one = Node('a')
node_two = Node('b')