Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #107.49K
~153.57K People Reached
Favorite Forums
Favorite Tags
Member Avatar for shak187

Anyone can u help me to convert this code to java.......... def WidestGap(n, start, finish): maxgap = 0: i = 1 min_start = 0 while i < len(start): if finish[min_start] > start[i] and start[i] < start[min_start]: maxgap = 0 min_start = i elif finish[min_start] < start[i]: maxgap = max(maxgap, (start[i] …

Member Avatar for eliasarximan
2
154K