Skip to content

Instantly share code, notes, and snippets.

View hiuryoliveira's full-sized avatar
🤓
Ready to work!

Hiury Oliveira hiuryoliveira

🤓
Ready to work!
View GitHub Profile
import java.util.ArrayList;
public class ArvoreAvl {
protected No raiz;
public void inserir(int k) {
No n = new No(k);
inserirAVL(this.raiz, n);
}
@tomysmile
tomysmile / mac-setup-redis.md
Last active July 16, 2024 04:45
Brew install Redis on Mac

type below:

brew update
brew install redis

To have launchd start redis now and restart at login:

brew services start redis