Skip to content

Instantly share code, notes, and snippets.

View chatay's full-sized avatar
🎯
Focusing

chatay chatay

🎯
Focusing
  • Mercedes
  • İstanbul
View GitHub Profile
@chatay
chatay / SumTwoValues.cs
Last active February 12, 2023 14:58
AddTwoNumbers leetcode
public class ListNodeSolution
{
public class ListNode
{
public int val;
public ListNode next;
public ListNode(int val = 0, ListNode next = null)
{
this.val = val;
this.next = next;