forked from Hithomelabs/DSA_sheets
11 lines
222 B
Java
11 lines
222 B
Java
package com.hithomelabs.dsa.array.two_sum;
|
|
|
|
class Solution {
|
|
|
|
private Solution solution = new HashMapSolution();
|
|
|
|
public int[] twoSum(int[] nums, int target) {
|
|
return solution.solve(nums, target);
|
|
}
|
|
}
|