DSA Day 35/100
Topic: Linked List
Questions Successfully Completed: 1
1) Sum of nodes of linked listEasy
Sum of nodes of linked list
package linkedlist;
class displaySumNode {
int data;
displaySumNode next;
displaySumNode(int data) {
this.dat...
preetikaprakash.hashnode.dev1 min read