Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class Solution:
  2. def solve(self, nums):
  3. # Write your code here
  4. max1=max(nums)
  5. nums.remove(max1)
  6. return max(nums)*2<max1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement