Add logical approach

This commit is contained in:
Jessica Kwok 2021-06-15 16:24:34 -07:00
parent 1ef5a9ab07
commit 789f5fc03c

View file

@ -16,4 +16,25 @@
# Example 2:
# Input: num = 9996
# Output: 9999
# Explanation: Changing the last digit 6 to 9 results in the maximum number.
# Explanation: Changing the last digit 6 to 9 results in the maximum number.
#
# Approach 1: Logical Approach
# Explanation: Changing the first available 6 to a 9 will give the max number
#
def max_number(num)
arr = num.to_s.split('')
arr.each_with_index do |num, i|
if num == '6'
arr[i] = '9'
return arr.join.to_i
end
end
end
puts max_number(9669)
# => 9969
puts max_number(9996)
# => 9999