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
| # Happy git commands | |
| alias gelp='git help' | |
| alias glone='git clone' | |
| alias ginit='git init' | |
| alias gadd='git add' | |
| alias gove='git mv' | |
| alias gestore='git restore' | |
| alias gel='git rm' | |
| alias gout='git checkout' | |
| alias garse-checkout='git parse-checkout' |
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
| public class Radix { | |
| private int[] arr; | |
| private int length; | |
| /** | |
| * A class to sort an array with radix sort | |
| * | |
| * @param arr The array which should be sorted | |
| */ | |
| public Radix(int[] arr) { |
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.io.File; | |
| public class FileAccessors { | |
| /** | |
| * @param folderPathName | |
| * @return | |
| */ | |
| public static File[] getFiles(String folderPathName) { | |
| File folder = new File(folderPathName); | |
| return folder.listFiles(); |