기초 테스트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,355
14년 전 조회 1,474
14년 전 조회 3,310
14년 전 조회 2,435
14년 전 조회 1,627
14년 전 조회 1,835
14년 전 조회 1,747
14년 전 조회 1,732
14년 전 조회 1,259
14년 전 조회 1,450
14년 전 조회 1,564
14년 전 조회 1,920
14년 전 조회 1,612
14년 전 조회 1,975
14년 전 조회 1,756
14년 전 조회 1,912
14년 전 조회 1,509
14년 전 조회 1,779
14년 전 조회 1,698
14년 전 조회 1,576
14년 전 조회 1,462
14년 전 조회 1,899
14년 전 조회 2,305
14년 전 조회 1,705
14년 전 조회 1,527
14년 전 조회 4,059
14년 전 조회 1,591
14년 전 조회 1,476
14년 전 조회 2,825
14년 전 조회 2,257
14년 전 조회 2,773
14년 전 조회 1,335
14년 전 조회 1,574
14년 전 조회 1,387
14년 전 조회 1,251
14년 전 조회 1,349
14년 전 조회 1,468
14년 전 조회 2,224
14년 전 조회 1,561
14년 전 조회 1,642
14년 전 조회 1,265
14년 전 조회 1,760
14년 전 조회 2,375
14년 전 조회 1,777
14년 전 조회 2,051
14년 전 조회 1,555
14년 전 조회 1,693
14년 전 조회 1,500
14년 전 조회 1,823
14년 전 조회 1,703
14년 전 조회 1,126
14년 전 조회 1,305
14년 전 조회 1,308
14년 전 조회 1,644
14년 전 조회 1,482
14년 전 조회 1,511
14년 전 조회 1,445
14년 전 조회 1,852
14년 전 조회 1,571
14년 전 조회 1,567
14년 전 조회 1,577
14년 전 조회 1,386
14년 전 조회 2,422
14년 전 조회 2,210
14년 전 조회 1,631
14년 전 조회 1,464
14년 전 조회 2,536
14년 전 조회 1,892
14년 전 조회 1,726
14년 전 조회 1,459
14년 전 조회 2,169
14년 전 조회 4,449
14년 전 조회 3,084
14년 전 조회 1,827
14년 전 조회 1,427
14년 전 조회 1,469
14년 전 조회 2,008
14년 전 조회 1,661
14년 전 조회 1,994
14년 전 조회 2,083
14년 전 조회 2,116
14년 전 조회 1,295
14년 전 조회 1,523
14년 전 조회 3,405
14년 전 조회 1,433
14년 전 조회 1,928
14년 전 조회 1,479
14년 전 조회 1,354
14년 전 조회 1,907
14년 전 조회 1,335
14년 전 조회 2,022
14년 전 조회 1,605
14년 전 조회 2,262
14년 전 조회 2,177
14년 전 조회 1,696
14년 전 조회 1,927
14년 전 조회 1,631
14년 전 조회 2,328
14년 전 조회 1,913
14년 전 조회 1,887