Untitled

mail@pastecode.io avatar
unknown
plain_text
a month ago
111 B
0
Indexable
Never
namespace Linkedlist
{
    class Node
    {

        public int Data;
        public Node Next;
    }
}