We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TIP101 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.
next
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Set the next attribute of node_one to node_two to link these nodes sequentially.
node_one
node_two
1) Assign `node_two` as the `next` attribute of `node_one` to create a link between the two nodes.
⚠️ Common Mistakes
node_two.next = node_one
node_one.next = node_two