Skip to content

Instantly share code, notes, and snippets.

View cgradwohl's full-sized avatar
🌱
Growth Mode

Chris Gradwohl cgradwohl

🌱
Growth Mode
View GitHub Profile
@cgradwohl
cgradwohl / timezones.json
Created September 17, 2020 06:48
timezones data set
[
{
"value": "Dateline Standard Time",
"utc": "Etc/GMT+12"
},
{
"value": "(UTC-12:00) International Date Line West",
"utc": "Etc/GMT+12"
},
{
@cgradwohl
cgradwohl / LinkedList.c
Created November 15, 2020 01:46
Linked List in C
#include <stdio.h>
#include <stdlib.h>
typedef struct Node {
int key;
struct Node* prev;
struct Node* next;
} Node;
typedef struct LinkedList {