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

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
4번째 줄: 4번째 줄:
==PHP==
==PHP==
[[category: PHP]]
[[category: PHP]]
<source lang='PHP'>
<syntaxhighlight lang='PHP'>
$setA = array('a', 'b', 'c', 'd');
$setA = array('a', 'b', 'c', 'd');
$setB = array('c', 'd', 'e', 'f');
$setB = array('c', 'd', 'e', 'f');
17번째 줄: 17번째 줄:
#    [7] => f
#    [7] => f
# )
# )
</source>
</syntaxhighlight>


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


==같이 보기==
==같이 보기==

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 }}