Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. class Result {
  2.  
  3.     /*
  4.      * Complete the 'linker' function below.
  5.      *
  6.      * The function is expected to return a list of matches.
  7.      * The function accepts following parameters:
  8.      *  1. List of bankstatement
  9.      *  2. List of transfers
  10.      *
  11.      * SEE EXMAPLE above
  12.      */
  13.  
  14.     public static List<List<String>> linker(List<List<String>> bankStatment, List<List<String>> transfers) {
  15.  
  16.     }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement