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
import java.util.Arrays; | |
import java.util.LinkedList; | |
import java.util.Queue; | |
public class ShortestPathCustom { | |
private static int[][] data; | |
private static int[][] weights; | |
private static int m, n; |
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
db: | |
image: postgres | |
environment: | |
- POSTGRES_DB=keycloak | |
- POSTGRES_USER=keycloak | |
- POSTGRES_PASSWORD=password | |
- POSTGRES_ROOT_PASSWORD=root_password | |
keycloak: |
NewerOlder