Run in terminal:
sudo sysctl fs.inotify.max_user_watches=524288
sudo sysctl -p --system
Reload your IDE
Run in terminal:
sudo sysctl fs.inotify.max_user_watches=524288
sudo sysctl -p --system
Reload your IDE
| class Heap { | |
| constructor(arr, comparator) { | |
| this.values = []; | |
| this.comparator = comparator; | |
| if (arr) { | |
| this.build(arr); | |
| } | |
| } | |