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
// To run this file run: | |
// $ javac main.java | |
// $ java Main | |
import java.util.ArrayList; | |
class DuffelAirResponse { | |
private String origin; | |
private String destination; | |
private String departureTime; |
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
__check_and_set_nvm() { | |
if [ ! -z $__AUTO_NVM_DIR ] && [ "$PWD" = "$__AUTO_NVM_DIR" ] | |
then | |
return | |
fi | |
__AUTO_NVM_DIR="$PWD" | |
if [ -e .nvmrc ] | |
then |