function findSequence(goal) { function find(start, history) { if (start == goal) return history; else if (start > goal) return null;
確定! 回上一頁