Skip to content

Commit f367770

Browse files
committed
Adding Efficient Solution for Problem - 1299 - Replace Elements on Right Side
1 parent 44b7c88 commit f367770

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
##==================================
2+
## Leetcode
3+
## Student: Vandit Jyotindra Gajjar
4+
## Year: 2020
5+
## Problem: 1299
6+
## Problem Name: Replace Elements with Greatest Element on Right Side
7+
##===================================
8+
#
9+
#Given an array arr, replace every element in that array with the greatest element among the elements to its right, and replace the last element with -1.
10+
#
11+
#After doing so, return the array.
12+
#
13+
#Example 1:
14+
#
15+
#Input: arr = [17,18,5,4,6,1]
16+
#Output: [18,6,6,6,1,-1]
17+
class Solution:
18+
def replaceElements(self, array):
19+
maxValue = -1 #Define maxValue variable -1.
20+
for i in range(len(array)) - 1, -1, -1): #Loop through array in reverse order
21+
maxValue, array[i] = max(maxValue, array[i]), maxValue #Interchange the maxValue and array[i]
22+
return array #Return final array

0 commit comments

Comments
 (0)