PR
Prashant Mishra
Author ProfileClaim This Author Profile
Prove ownership by publishing #HashtagPLUS and this profile link on your author page or an article under your byline. A moderator or admin will review the request before it merges into your real HashtagPLUS username.
0 karma0 postsjoined about 1 month ago
π dev.toSource
Problems where we can use two pointers i,j to get to a solution in the given Array or String Two Sum II Input Arrays is Sorted class Solution { public int[] twoSum(int[] numbers, int target) { int l= 0; int r = numbers.length-1; while(l<r){
about 1 month ago