Skip to content

Instantly share code, notes, and snippets.

View Filipelion's full-sized avatar
🔥
Coding

Filipe Lima Filipelion

🔥
Coding
  • Brazil, PE
View GitHub Profile
@giggio
giggio / podcasts.md
Last active February 25, 2022 02:43
Podcasts
@eliasdorneles
eliasdorneles / graph_coloring.py
Last active August 1, 2021 12:44
Basic implementation of graph coloring
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# INSTRUCTIONS:
#
# 1) Install graphviz (http://www.graphviz.org)
# 2) Run on terminal:
# python graph_coloring.py | dot -Tpng -o graph.png
# or, if you have imagemagick installed:
# python graph_coloring.py | dot -Tpng | display