Created
July 23, 2022 22:43
-
-
Save RakhmedovRS/341071fbc066bcf4a3b2c228e51fc7ff to your computer and use it in GitHub Desktop.
ListNode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ListNode | |
{ | |
public int val; | |
public ListNode next; | |
public ListNode(){} | |
public ListNode(int val){ this.val = val; } | |
public ListNode(int val, ListNode next) | |
{ | |
this.val = val; | |
this.next = next; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment