15 Reputation Points
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
0 Endorsements
Ranked #107.49K
Re: 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] … |