Guest User

Untitled

a guest
Dec 14th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1.     def ArestasExtremas(self, S):
  2.         extremos = []
  3.         for i in S:
  4.             for j in S:
  5.                 if i == j:
  6.                     continue
  7.                 for k in S:
  8.                     if k == i and k == j:
  9.                         continue
  10.                 if not(LeftOn(i, j, k)):
  11.                     pass                   
  12.                 extremos.append([i,j])     
  13.         return extremos
Add Comment
Please, Sign In to add comment