New tasks
This commit is contained in:
10
2. Add Two Numbers/ListNode.cs
Normal file
10
2. Add Two Numbers/ListNode.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace _2._Add_Two_Numbers;
|
||||
|
||||
public class ListNode {
|
||||
public int val;
|
||||
public ListNode? next;
|
||||
public ListNode(int val=0, ListNode? next=null) {
|
||||
this.val = val;
|
||||
this.next = next;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user