- Atualizar o projeto via composer: composer update
- Gerar chave do projeto: php artisan key:generate
- Rodar a migrate o seed da tabela de usuários: php artisan migrate --seed
- Gerar o autoload das classes: composer dump-autoload
- Limpar o cache de rotas: php artisan route:cache
- Limpar o cache de configurações: php artisan config:cache
- Limpar o cache de views: php artisan view:cache
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Implementação do algoritmo de Dijkstra | |
// Teste: http://br.spoj.com/problems/ENGARRAF/ | |
#include <iostream> | |
#include <list> | |
#include <queue> | |
#define INFINITO 10000000 | |
using namespace std; |