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 com.company; | |
import java.util.*; | |
public class Main { | |
public static void main(String[] args) { | |
ArrayList<ArrayList<Object>> masterList = new ArrayList<>(); |
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 static void main(String[] args) { | |
char[] aArray = {'a', 'a', 'a', 'a', 'a'}; | |
char[] bArray = {'b', 'b', 'b'}; | |
char[] cArray = {'c', 'c'}; | |
char[][] combinedList = {aArray, bArray, cArray}; | |
TreeMap<Character, Integer> map = new TreeMap<>(); | |
StringBuilder builder = new StringBuilder(); |