CS1083/Submissions/As7/CS1083-A7-StudentFiles-W2021/Seq.java
2022-10-07 00:44:12 -03:00

20 lines
389 B
Java

/**
A utility class that provide methods to compute elements of the
recursive sequence.
@author Leah Bidlake
*/
public class Seq{
/**
Recursively computes seq(n).
@param n Non-negative integer.
@return int Element n in the recursive sequence.
*/
public static int seqR(int n){
//TODO: this should look very much like the
//mathematical specification
}
}