10 lines
229 B
Java
10 lines
229 B
Java
package com.hithomelabs.dsa.array.three_sum;
|
|
|
|
import java.util.List;
|
|
|
|
public class Solution implements Solvable {
|
|
@Override
|
|
public List<List<Integer>> solve(int[] nums) {
|
|
// Implementation of the solution
|
|
}
|
|
} |