Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

67
Visualizações
How can I find remaining percentages if one or two percentages are known

Consider the following Objects:

// Example 1

{
    gradeA: 100,
    gradeB: 'No-Data',
    gradeC: 'No-Data'
}
// Example 2

{
   gradeA: 50,
   gradeB: 40,
   gradeC: 'No-Data'
}
// Example 3

{
   gradeA: 75,
   gradeB: 'No-Data',
   gradeC: 'No-Data'
}

They represent a percentage, i.e. the sum of all three grades will be exactly 100. How can we interpolate the keys with 'No-Data' whenever their values can be calculated?

Expected Results:

// Example 1

{
    gradeA: 100,
    gradeB: 0,
    gradeC: 0
}
// Example 2

{
   gradeA: 50,
   gradeB: 40,
   gradeC: 10
}
// Example 3

{
   gradeA: 75,
   gradeB: 'No-Data',
   gradeC: 'No-Data'
}

// Note: This one can't be figured out so we leave it as is.

My solution in pseudo-code:

function interpolate(obj) {
    // If only one key is a number:
    //    The value is 100:
    //        Set the other two keys to 0 and return the obj.
    //    The value is less than 100:
    //        return obj unchanged.
    // If only one key is not a number:
    //    set that key to the sum of the two numbers minus 100 and return the obj.
}

There are two main questions here:

  1. How do I find out how many and which keys are 'No-Data'.
  2. Can I rearrange the control flow to be more efficient?

In reality, these Objects are inside an Array, but I'm sure I can figure that stuff out myself.

about 4 years ago · Juan Pablo Isaza
3 Respostas
Responde à pergunta

0

Using the same logic you've described:

function interpolate(obj) {
  var noData = 0;
  Object.keys(obj).forEach(key => {
    if (isNaN(obj[key])) {
      noData++;
    }
  });

  var sum = 0;
  var missingKey;
  if (noData == 1) {
    Object.keys(obj).forEach(key => {
      if (!isNaN(obj[key])) {
        sum += obj[key];
      } else {
        missingKey = key;
      }
    });
    obj[missingKey] = 100 - sum;
    return obj
  }
  return obj;
}

var objects = [{
  gradeA: 100,
  gradeB: 'No-Data',
  gradeC: 'No-Data'
}, {
  gradeA: 50,
  gradeB: 40,
  gradeC: 'No-Data'
}, {
  gradeA: 75,
  gradeB: 'No-Data',
  gradeC: 'No-Data'
}]

objects.forEach(o => console.log(interpolate(o)));

about 4 years ago · Juan Pablo Isaza Relatório

0

  1. You can use something like this to filter for a key given a value (in your case No-Data).

let keys = Object.keys(obj).filter(k=>obj[k]===value);

Just count the number of items in the array to see how many you have.

  1. Your control flow is fine, it will be readable and its efficiency depends on how efficient you are at counting the number of occurances of No-Data. Tip: If you are trying to be as efficient as possible, you don't need to keep finding occurrences of No-Data after you find 2 :)

Ps. There are a few issues with the other code that was posted that will probably stop you from getting full points if you turn it in :)

about 4 years ago · Juan Pablo Isaza Relatório

0

In my solution I analyze each object for the combined sum of the grades and the number of No-Data values. Then I proceed to replace the No-Data values in each property of each object if conditions match. Works with any number of grades.

const objects = [{
    gradeA: 100,
    gradeB: 'No-Data',
    gradeC: 'No-Data'
}, {
   gradeA: 50,
   gradeB: 40,
   gradeC: 'No-Data'
}, {
   gradeA: 75,
   gradeB: 'No-Data',
   gradeC: 'No-Data'
}];

const analysis = objects
  .map( o => Object.values(o)
    .reduce( ([o, sum, nodatacount], v) =>
      v==='No-Data'
      ? [o, sum, nodatacount+1] 
      : [o, sum+v, nodatacount], 
      [o, 0, 0] ) );

for(const [o, sum, nodatacount] of analysis) {
  if(sum === 100 || nodatacount === 1) {
    for(const [key, _] of Object.entries(o)
      .filter(([_, value]) => value==='No-Data')
      ) {
      o[key] = 100-sum;
    }
  }
}

console.log( objects );
.as-console-wrapper {top:0; max-height: 100% !important}

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda