Skip to content

Instantly share code, notes, and snippets.

View kirandeep123's full-sized avatar
🎯
Focus is the only superpower you need ever

Kirandeep Kaur kirandeep123

🎯
Focus is the only superpower you need ever
View GitHub Profile
//all operations of the linked list in javascript only then move forward
class Node {
constructor(data,next=null){
this.data= data;
this.next = next;
}
}
class LinkedList{
constructor(){
@kirandeep123
kirandeep123 / a-blog-about-a-famous-personality.markdown
Last active January 18, 2019 20:45
A blog about a famous personality

A blog about a famous personality

This is a blog about a famous personality, Dr. Norman Borlaug and it includes the work that he did to help people around the world.

A Pen by kirandeep kaur on CodePen.

License.