Leet Code Languish
• By Arman Drismir • 3 minutes readTable of Contents
Two sum
I first tried a nested for loop to check what two numbers sum to target. ngl I thought this was as good as you could do but it turns out you can do better…
The better solution is to create a map to store all the values you have seen. Then at the start of each iteration you calculate the value you need to get target
. Now you can check if you have seen that value is $O(1)$ time. We put the index of the seen values as the key so if we have seen the value we need we also have its index. That way we can return the current iterations index and the needed values index to solve the problem in $O(n)$ time.
"""
:type nums: List[int]
:type target: int
:rtype: List[int]
"""
=
= -
=
return
=
return
Best time to buy and sell stock
My first real solution to this was to create an array of the highest value that came after index i. Then I could find the biggest difference between prices[i] and that array at i and I would have the max possible profit.
While refining this I realized I could do it in one sweep by keeping track of the highest difference between the smallest value before prices[i] and prices[i]. Then we just return that value.
"""
:type prices: List[int]
:rtype: int
"""
=
= 0
= -
=
=
return
217. Contains duplicates
This was literally just using a map. I got optimal in like 30 seconds.
"""
:type nums: List[int]
:rtype: bool
"""
=
return True
= 1
return False
238. Product of array except self
It seems like we should get the product of the entire array and then each i in answer is $answers[i] = total / nums[i]$
This does not work because we may have 0’s and negatives in our answer. Hacky soln:
- Get total excluding 0’s
- If n is 0 exclude it from the total (replace it with identity number which for multiplication is 1)
- Getting answers
- if there is more than 1 0’s then return an array of all 0’s
- if there is exactly 1 zero then if n is zero then return the total and if n is not zero then return 0
- if there are no zeros then for each n return total/n
This actually worked! And im pretty sure is optimal as well as beating 93% of submissions in terms of memory :p
I think my code is so memory efficient because I use functools reduce which is probably very optimized?
= 0
global
+= 2
+= 1
return
return
return 1
return *
"""
:type nums: List[int]
:rtype: List[int]
"""
= 0
global
=
return *
=
continue
continue
# There is no zeros
return