1 public class Solution { 2 public int RectCover(int target) { 3 return target<3?target:RectCover(target-1)+RectCover(target-2); 4 } 5 }