"함수 union()"의 두 판 사이의 차이

(새 문서: 분류: 집합 ;union ==Python== category: Python <source lang='Python'> set1 = {'A', 'B', 'C', 'D'}; set2 = {'C', 'D', 'E', 'F'}; print( set1.union(set2) ) # {'F', 'C', 'E',...)
 
잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(다른 사용자 한 명의 중간 판 8개는 보이지 않습니다)
1번째 줄: 1번째 줄:
[[분류: 집합]]
[[분류: 집합]]
;union
;union
==PHP==
[[category: PHP]]
<syntaxhighlight lang='PHP'>
$setA = array('a', 'b', 'c', 'd');
$setB = array('c', 'd', 'e', 'f');
print_r( array_unique(array_merge($setA, $setB)) );
# Array
# (
#    [0] => a
#    [1] => b
#    [2] => c
#    [3] => d
#    [6] => e
#    [7] => f
# )
</syntaxhighlight>


==Python==
==Python==
[[category: Python]]
[[category: Python]]
<source lang='Python'>
<syntaxhighlight lang='Python'>
set1 = {'A', 'B', 'C', 'D'};
A = {'a', 'b', 'c', 'd'}
set2 = {'C', 'D', 'E', 'F'};
B = {'c', 'd', 'e', 'f'}
print( A | B )
# {'B', 'E', 'F', 'D', 'A', 'C'}
print( set1.union(set2) )
print( set1.union(set2) )
# {'F', 'C', 'E', 'D', 'B', 'A'}
# {'B', 'E', 'F', 'D', 'A', 'C'}
</source>
</syntaxhighlight>
<syntaxhighlight lang='Python'>
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[합집합]]
*[[합집합]]
*[[intersection]]
*[[set]]
*[[set]]

2020년 11월 2일 (월) 02:33 기준 최신판

union

1 PHP[ | ]

$setA = array('a', 'b', 'c', 'd');
$setB = array('c', 'd', 'e', 'f');
print_r( array_unique(array_merge($setA, $setB)) );
# Array
# (
#     [0] => a
#     [1] => b
#     [2] => c
#     [3] => d
#     [6] => e
#     [7] => f
# )

2 Python[ | ]

A = {'a', 'b', 'c', 'd'}
B = {'c', 'd', 'e', 'f'}
print( A | B )
# {'B', 'E', 'F', 'D', 'A', 'C'}
print( set1.union(set2) )
# {'B', 'E', 'F', 'D', 'A', 'C'}

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}