Skip to content

Instantly share code, notes, and snippets.

brew install --cask font-iosevka
brew install --cask font-fantasque-sans-mono
brew install --cask font-comic-sans-ms
brew install --cask font-jetbrains-mono
brew install --cask font-fira-code
class Heap {
constructor(comparator = (x, y) => x > y) {
this.data = []
this.comparator = comparator
}
insert(val) {
const data = this.data
data.push(val)
@savoygu
savoygu / input.scss
Last active December 13, 2022 03:34
Sass Spacing Mixin - Generated by SassMeister.com.
$properties: (
m: margin,
p: padding
);
$directions: (
a: all,
t: top,
r: right,
b: bottom,