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 scala.collection.mutable | |
import scala.util.Random | |
/** | |
* Created by husrev on 10/02/16. | |
*/ | |
object HelloApp extends App { | |
type Point = (Int, Int) | |
type Trace = List[Point] |
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 ChainImageCache implements ImageCache { | |
private ImageCache fastCache, slowCache; | |
public ChainImageCache(ImageCache fastCache, ImageCache slowCache) { | |
this.fastCache = fastCache; | |
this.slowCache = slowCache; | |
} | |
@Override | |
public Bitmap getBitmap(String url) { |