기초 테스트1

array_unique

주어진 인자로 주어진 배열의 값들 중, 중복되는 값을 제외하고, 중복이 없는 것만을 모아 새로운 배열로 만든후 반환합니다.
 
Takes an input array and returns a new array without duplicate values.
 
array_unique 를 사용 하면 아래와 같이 쉽게 중복을 제거한 배열을 얻을수 있습니다.
 
$input = array("a" => "green""red""b" => "green""blue""red");
$result array_unique($input);
print_r($result);
?>
Array
(
    [a] => green
    [0] => red
    [1] => blue
)
 
문제> array_unique 를 사용하지 않고 위와 동일한 문제에 동일한 답이 나오도록 처리하세요.
제한시간 - 30분
|

댓글 16개

우와 신선한데요?

function array_unique_custom($arr){

while (list($key, $value) = each($arr)) {
if($$value == true) unset($arr[$key]);
$$value = true;
}
return $arr;

}
in_array면 간단할거 같은데 그 함수도 안되면 루프를 2번 돌려야될듯;;
상관없습니다. 문제 그대로 입니다.
코딩하기는 싫고,,
key -> value 구조를 value->key 구조로 convert 하신후 다시 value->key를 한번더 돌리면 됩니다.

$input = array("a" => "green", "red", "b" => "green", "blue", "red");
$temp = array();
$result = array();
foreach($input as $key=>$value) {
if(!isset($temp["{$value}"]))
$temp["{$value}"] = $key;

}

foreach($temp as $key=>$value) {
$result["{$value}"] = $key;

}
$input = array("a" => "green", "red", "b" => "green", "blue", "red");
$result = xarray_unique($input);
print_r($result);



function xarray_unique($input) {
$rtn=array();
while (list($key,$value)=each($input)) {
if (!in_array($value,$rtn,true)) {
$rtn["{$key}"]=$value;
}
}
return $rtn;
}
저도 명랑폐인님 같은 생각했는데, 그냥

$input = array("a" => "green", "red", "b" => "green", "blue", "red");

print_r(array_merge(array_flip(array_flip($input))));
오 이건 생각의 전환인데요...멋집니다
저도

<?
$input = array("a" => "green", "red", "b" => "green", "blue", "red");

$output = array();
foreach($input as $k=>$v) {
if (!in_array($v, $output)) {
$output[$k] = $v;
}
}
print_r($output);
?>

Array
(
[a] => green
[0] => red
[1] => blue
)
print_r(array_flip(array_flip(array_reverse($input, true))));
WoW !
이러니 배추빌더가 쵝오지!!!
털석OTL
연구해보니 답은 맞습니다만. 이거 태클의 여지가 좀...
어째든 대단하십니다. 발상자체가 다르군요.
마치 무림고수처럼... 휘리릭!!!
우와 단 한줄로 끝내시네요~ 저도 배추빌더 회원인데 ㅋㅋㅋ
헉, 과찬들이십니다.
다른 분들 답변보고 다른 방법은 없을까? 하며
매뉴얼 뒤져본 것 뿐입니다.
저는 인터넷 안되면 코딩을 못한다는....>.<
기초는 아닌듯 ^^
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 3,074
14년 전 조회 1,210
14년 전 조회 3,011
14년 전 조회 2,186
14년 전 조회 1,359
14년 전 조회 1,576
14년 전 조회 1,470
14년 전 조회 1,460
14년 전 조회 1,013
14년 전 조회 1,187
14년 전 조회 1,289
14년 전 조회 1,658
14년 전 조회 1,352
14년 전 조회 1,722
14년 전 조회 1,479
14년 전 조회 1,667
14년 전 조회 1,241
14년 전 조회 1,515
14년 전 조회 1,428
14년 전 조회 1,306
14년 전 조회 1,191
14년 전 조회 1,634
14년 전 조회 2,036
14년 전 조회 1,427
14년 전 조회 1,258
14년 전 조회 3,775
14년 전 조회 1,329
14년 전 조회 1,202
14년 전 조회 2,551
14년 전 조회 1,987
14년 전 조회 2,492
14년 전 조회 1,054
14년 전 조회 1,307
14년 전 조회 1,133
14년 전 조회 991
14년 전 조회 1,088
14년 전 조회 1,195
14년 전 조회 1,960
14년 전 조회 1,293
14년 전 조회 1,385
14년 전 조회 1,007
14년 전 조회 1,509
14년 전 조회 2,104
14년 전 조회 1,529
14년 전 조회 1,788
14년 전 조회 1,273
14년 전 조회 1,438
14년 전 조회 1,242
14년 전 조회 1,565
14년 전 조회 1,428
14년 전 조회 881
14년 전 조회 1,045
14년 전 조회 1,059
14년 전 조회 1,383
14년 전 조회 1,227
14년 전 조회 1,245
14년 전 조회 1,191
14년 전 조회 1,610
14년 전 조회 1,313
14년 전 조회 1,332
14년 전 조회 1,371
14년 전 조회 1,149
14년 전 조회 2,187
14년 전 조회 1,960
14년 전 조회 1,405
14년 전 조회 1,250
14년 전 조회 2,319
14년 전 조회 1,668
14년 전 조회 1,515
14년 전 조회 1,225
14년 전 조회 1,940
14년 전 조회 4,200
14년 전 조회 2,863
14년 전 조회 1,564
14년 전 조회 1,171
14년 전 조회 1,234
14년 전 조회 1,759
14년 전 조회 1,416
14년 전 조회 1,784
14년 전 조회 1,885
14년 전 조회 1,876
14년 전 조회 1,059
14년 전 조회 1,298
14년 전 조회 3,173
14년 전 조회 1,197
14년 전 조회 1,674
14년 전 조회 1,270
14년 전 조회 1,121
14년 전 조회 1,687
14년 전 조회 1,129
14년 전 조회 1,779
14년 전 조회 1,378
14년 전 조회 2,012
14년 전 조회 1,956
14년 전 조회 1,471
14년 전 조회 1,709
14년 전 조회 1,424
14년 전 조회 2,077
14년 전 조회 1,714
14년 전 조회 1,663