(Python) beats 95% using memoisation

class Solution {

public List helper(int start, int end){
List result = new ArrayList<>();
if(start > end){
result.add(null);
return result;

Comments (1)