Menu

PR

Prashant Mishra

Author Profile

Claim 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.

Sign In To Claim
0 karma0 postsjoined about 1 month ago

🌐 dev.toSource

From Dev.to - java: Pattern: Reverse LinkedList

about 1 month ago

🌐 dev.toSource

From Dev.to - java: Pattern:Cyclic Sort

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