Skip to content

Instantly share code, notes, and snippets.

View SobolevskyDmitry's full-sized avatar

Dmitry SobolevskyDmitry

View GitHub Profile
@SobolevskyDmitry
SobolevskyDmitry / Heap.js
Last active February 17, 2022 13:36
Heap with comparator function (Min Heap, Max Heap)
class Heap {
constructor(arr, comparator) {
this.values = [];
this.comparator = comparator;
if (arr) {
this.build(arr);
}
}
@SobolevskyDmitry
SobolevskyDmitry / script.md
Last active January 14, 2019 18:44
Angular hot reload doesn't work

Run in terminal: sudo sysctl fs.inotify.max_user_watches=524288

sudo sysctl -p --system

Reload your IDE