Skip to content

Instantly share code, notes, and snippets.

@tsundokul
tsundokul / linked-list.c
Created February 1, 2019 10:27
Double linked list implementation for leetcode 707. Design Linked List
typedef struct Node Node;
struct Node {
int val;
Node* prev;
Node* next;
};
typedef struct {
@parmentf
parmentf / GitCommitEmoji.md
Last active June 21, 2024 19:13
Git Commit message Emoji