import java.util.ArrayList;
class ToDos {
public static void main(String[] args) {
// Sherlock
ArrayList<String> sherlocksToDos = new ArrayList<String>();
sherlocksToDos.add("visit the crime scene");
sherlocksToDos.add("play violin");
sherlocksToDos.add("interview suspects");
sherlocksToDos.add("solve the case");
sherlocksToDos.add("apprehend the criminal");
// Poirot
ArrayList<String> poirotsToDos = new ArrayList<String>();
poirotsToDos.add("visit the crime scene");
poirotsToDos.add("interview suspects");
poirotsToDos.add("let the little grey cells do their work");
poirotsToDos.add("trim mustache");
poirotsToDos.add("call all suspects together");
poirotsToDos.add("reveal the truth of the crime");
// Remove each to-do below:
sherlocksToDos.remove("visit the crime scene");
poirotsToDos.remove("visit the crime scene");
sherlocksToDos.remove("play violin");
System.out.println(sherlocksToDos.toString() + "\n");
System.out.println(poirotsToDos.toString());
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter