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
| /* | |
| * Set up your Git configuration | |
| */ | |
| git config --global user.email "[email protected]" | |
| git config --global user.name "Your Name" | |
| git config --global core.editor "nano" | |
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
| # Tell ls to be colourful | |
| export CLICOLOR=1 | |
| export LSCOLORS=Exfxcxdxbxegedabagacad | |
| # Tell grep to highlight matches | |
| export GREP_OPTIONS='--color=auto' | |
| export TERM="xterm-color" | |
| PS1='\[\e[0;33m\]\u\[\e[0m\]@\[\e[0;32m\]\h\[\e[0m\]:\[\e[0;34m\]\w\[\e[0m\]\$ ' |
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
| { | |
| "workbench.startupEditor": "none", | |
| "extensions.ignoreRecommendations": true, | |
| "editor.fontSize": 15, | |
| "editor.fontFamily": "Consolas", | |
| // "editor.fontSize": 17, | |
| // "editor.fontFamily": "Ubuntu Mono Regular", | |
| "editor.lineHeight": 20, | |
| "telemetry.enableCrashReporter": false, | |
| "telemetry.enableTelemetry": false, |
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
| package practice; | |
| import java.io.BufferedReader; | |
| import java.io.InputStreamReader; | |
| import java.nio.file.Files; | |
| import java.nio.file.Paths; | |
| import java.nio.file.StandardOpenOption; | |
| import java.util.HashMap; | |
| import java.util.Map; |
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
| //DFS | |
| public boolean hasPathDFS(int source, int destination) { | |
| HashSet<Integer> visited = new HashSet<>(); | |
| return hasPathDFS(getNode(source), getNode(destination), visited); | |
| } | |
| private boolean hasPathDFS(Node source, Node destination, HashSet<Integer> visited) { | |
| if (visited.contains(source.id)) { | |
| return false; | |
| } |
OlderNewer