Advertisement
superpawko

Untitled

Oct 3rd, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. for x in L:
  2. if g(f(x)) == False:
  3. L.remove(x)
  4.  
  5. if len(L) == 0:
  6. return -1
  7. elif len(L) > 0:
  8. return (max(L))
  9.  
  10. L1 = L[:]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement