Skip to content

Instantly share code, notes, and snippets.

View emmaline261b's full-sized avatar

Emmaline261 emmaline261b

  • Wroclaw
View GitHub Profile
@emmaline261b
emmaline261b / MergeSort.java
Created August 17, 2021 22:00
Sorting Methods for int arrays (selection sort and merge sort)
import java.util.Arrays;
import java.util.Scanner;
public class MergeSort {
public static void main(String[] args) {
int lentghOfArray = 0;
Scanner input = new Scanner(System.in);
System.out.println("What's the size of the array?");
@emmaline261b
emmaline261b / gist:88a345e01172e096c0cde252fed323e8
Created October 3, 2022 10:04
best way to create a shortcut to open intllij projects from Mac terminal
alias idea='open -a "`ls -dt /Applications/IntelliJ\ IDEA*|head -1`"'