# Benchmark Results ## Time for [balloon.dot](http://msoe.us/taylor/cs2852/balloon.dot) with **100* desired dots ``` TODO replace this line with results from all four tests TODO ``` ## Time for [balloon.dot](http://msoe.us/taylor/cs2852/balloon.dot) with **1000* desired dots ``` TODO replace this line with results from all four tests TODO ``` ## Time for [skull.dot](http://msoe.us/taylor/cs2852/skull.dot) with **9000* desired dots ``` TODO replace this line with results from all four tests TODO ``` # Asymptotic Time Complexity Analysis for `removeDots()` or `removeDots2()` ## O( TODO ) — when using `ArrayList` with **n-1** desired dots Justification: TODO ## O( TODO ) — when using `ArrayList` with **3** desired dots Justification: TODO ## O( TODO ) — when using `LinkedList` with **n-1** desired dots Justification: TODO ## O( TODO ) — when using `LinkedList` with **3** desired dots Justification: TODO