Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

161
Views
Remove Duplicates from Sorted Array (different final results)

I am new at Programing and learning Javascript by doing some exercises from leetcode.com. I wanted to write a code to remove duplicates in a sorted array. When I use "console.log" at the end of the function to show the final result, I get the expected result. However when I use return (with the same variable) I get a wrong result. Can anybody please tell me, where I went wrong? Hier is my code:

/**
 * @param {number[]} nums
 * @return {number}
 */
var removeDuplicates = function (nums) {
  var newNums = []

  if (nums.length == 0) {
    newNums = []
  }

  for (var i = 0; i < nums.length; i++) {

    var curr = nums[i]
    var next = nums[i + 1]
    if (curr != next) {
      newNums.push(curr)
    }
  }

  console.log(newNums)
  return newNums
};

And here is a picture with the code and the results. the green arrow shows the output of (console.log), and the red one shows the output of (return). Thank you in advance! enter image description here

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

A slightly different approach by keeping the original object reference to the array and mutating the array by copying and adjusting the length of the array.

This approach does not need another array.

It basically checks if the predecessor is unequal to the actual item and copies the item to a new index j. This variable has the final length of the array and truncates the unwanted rest of the array.

function removeDuplicates(array) {
    let j = 0;
    for (let i = 0; i < array.length; i++) {
        if (array[i - 1] !== array[i]) array[j++] = array[i];
    }
    array.length = j;
    return array;
}

console.log(removeDuplicates([0, 1, 1, 2, 2, 2, 2, 3, 4, 5, 5]));

about 4 years ago · Juan Pablo Isaza Report

0

Here's how you can remove duplicates in any(sorted or unsorted) array in Javascript

const removeDuplicates = (orignalArray) =>{
  let allUniqueArray=[];
  let repWordArray=orignalArray.slice();
 
  const removeAnElement=(array, elem)=>{
    const index = array.indexOf(elem);
    if (index > -1) {
      array.splice(index, 1);
    }
    return array;
  }
 
  orignalArray.forEach(elem=>{
    if(!allUniqueArray.includes(elem)){
      allUniqueArray.push(elem);
      repWordArray=removeAnElement(repWordArray,elem)
    }
  });
  return allUniqueArray;
};

let array=[1,2,3,3,4,5,6,6,7];
const uniqueArray = removeDuplicates(array);
console.log('array: ',array);
console.log('uniqueArray: ',uniqueArray);
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!