Tag

Duplicate Detection

1 views collected around this technical thread.

php中文网 Courses
php中文网 Courses
Jun 4, 2025 · Backend Development

Detecting Duplicate Elements in an Array with PHP

This article explains how to determine whether an integer array contains any duplicate values using a PHP solution that iterates the array, stores seen elements in an associative map, and returns true on the first repeat, with O(n) time and space complexity.

Duplicate DetectionPHPSpace Complexity
0 likes · 4 min read
Detecting Duplicate Elements in an Array with PHP
php中文网 Courses
php中文网 Courses
May 9, 2025 · Fundamentals

Detecting Duplicate Elements in an Array Using PHP

This article explains how to determine whether an integer array contains any duplicate values by iterating through the elements, using an associative map in PHP to track occurrences, and returning true if a repeat is found or false otherwise, including code examples and analysis of time and space complexity.

Duplicate DetectionPHPalgorithm
0 likes · 4 min read
Detecting Duplicate Elements in an Array Using PHP
php中文网 Courses
php中文网 Courses
Jan 15, 2025 · Backend Development

Detecting Duplicate Elements in an Array with PHP

This article explains how to determine whether an integer array contains duplicate values by iterating through the elements, using a PHP associative array for constant‑time lookups, and provides the full solution code along with its execution flow, time and space complexity analysis.

Duplicate DetectionPHPSpace Complexity
0 likes · 4 min read
Detecting Duplicate Elements in an Array with PHP
php中文网 Courses
php中文网 Courses
Nov 4, 2024 · Fundamentals

Detecting Duplicate Elements in an Array Using PHP

This article explains how to determine whether an integer array contains duplicate values by traversing the array with a PHP solution that uses an associative map, and it details the algorithm's execution flow, time and space complexity, and provides sample inputs and outputs.

Duplicate DetectionPHPSpace Complexity
0 likes · 4 min read
Detecting Duplicate Elements in an Array Using PHP
php中文网 Courses
php中文网 Courses
Jul 19, 2024 · Backend Development

PHP Solution for Detecting Duplicate Elements in an Integer Array

This article explains how to determine whether an integer array contains duplicate values by iterating through each element, using a PHP associative array to track occurrences, and returning true if any value appears at least twice, with detailed code, execution flow, and time‑space complexity analysis.

Duplicate DetectionPHPSpace Complexity
0 likes · 4 min read
PHP Solution for Detecting Duplicate Elements in an Integer Array
php中文网 Courses
php中文网 Courses
Jul 12, 2024 · Fundamentals

Detecting Duplicate Elements in an Array Using PHP

This article explains how to determine whether an integer array contains any duplicate values by iterating through the elements, using a hash map for constant‑time lookups, and provides a PHP implementation of the containsDuplicate function along with its time and space complexity analysis.

Duplicate DetectionPHPTime Complexity
0 likes · 4 min read
Detecting Duplicate Elements in an Array Using PHP
php中文网 Courses
php中文网 Courses
Mar 29, 2024 · Backend Development

Detecting Duplicate Elements in an Array Using PHP

This article explains how to determine whether an integer array contains duplicate values by iterating through each element, using a PHP class with a containsDuplicate method that employs an associative array for O(n) time and space complexity, and provides example inputs and detailed execution flow.

Duplicate DetectionPHPSpace Complexity
0 likes · 4 min read
Detecting Duplicate Elements in an Array Using PHP
Baidu Geek Talk
Baidu Geek Talk
Nov 17, 2021 · Artificial Intelligence

Fast Video Editing: Architecture and AI‑Powered Subtitle & Redundant Segment Detection

Baidu’s Fast Editing tool automates video trimming by using NLP to recognize subtitles, tone markers and duplicate sentences, then aligns them with the timeline for one‑click removal, employing character, Levenshtein and cosine similarity algorithms within a three‑module architecture (Plugin, Window, Caption) and planning on‑device PaddlePaddle analysis to cut latency and cost.

AIDuplicate DetectionNLP
0 likes · 11 min read
Fast Video Editing: Architecture and AI‑Powered Subtitle & Redundant Segment Detection
Xianyu Technology
Xianyu Technology
Jun 9, 2021 · Artificial Intelligence

Applying Visual AI Techniques for Image Quality and Duplicate Detection in Xianyu Marketplace

By deploying large‑scale visual AI—including a ResNet‑101 classifier, ArcFace‑trained matching features, clustering‑based sub‑category refinement, and product‑level image indexing—Xianyu’s marketplace dramatically improves image quality, removes duplicates, enhances search relevance and feed diversity, and filters non‑compliant content.

Computer VisionDuplicate Detectiondeep learning
0 likes · 16 min read
Applying Visual AI Techniques for Image Quality and Duplicate Detection in Xianyu Marketplace
360 Quality & Efficiency
360 Quality & Efficiency
Oct 19, 2018 · Big Data

Information Fingerprint and Simhash Algorithm for Large-Scale Duplicate Detection

This article explains the concept of information fingerprints, compares traditional set‑equality methods, introduces the Simhash algorithm for high‑dimensional text similarity reduction, and demonstrates how partitioned 64‑bit fingerprints enable efficient duplicate detection on massive web data.

Duplicate DetectionSimhashbig data
0 likes · 6 min read
Information Fingerprint and Simhash Algorithm for Large-Scale Duplicate Detection