Skip to content

Instantly share code, notes, and snippets.

View shree675's full-sized avatar

Shreetesh M shree675

View GitHub Profile
@shree675
shree675 / hyper.js
Created September 22, 2022 12:33
Gist for Hyper bug report
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 13,
// font family with optional fallbacks
fontFamily:
'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
@shree675
shree675 / AVLTree.cpp
Last active April 5, 2021 18:30
AVL Tree implementation in C++
#include <iostream>
using namespace std;
struct Node{
int val;
Node* left;
Node* right;
int ht;
};