New tasks

This commit is contained in:
nullptroma
2023-03-05 00:46:41 +03:00
parent 1288b304ae
commit b285770a9c
15 changed files with 1018 additions and 0 deletions

View 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;
}
}