User:Realazthat/Notes/Algorithms/Set-intersection: Difference between revisions

no edit summary
(Created page with "== Intersection Not Empty == <pre> #Intersection Not Empty INE(A,B): if |A| > |B| return true for ( a in A ) if ( a not in B ) return true return fals...")
 
No edit summary
Line 1:
== IntersectionSet Difference Not Empty ==
 
 
<pre>
#IntersectionSet Difference Not Empty
INEDNE(A,B):
if |A| > |B|
return true
Line 18:
<pre>
#Intersection Not Empty
INEDNE(A,B):
if |A| > |B|
return true