freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/rosetta-code/sedols.portuguese.md

2.2 KiB

title id challengeType videoUrl localeTitle
SEDOLs 59d9c6bc214c613ba73ff012 5 SEDOLs

Description

Tarefa:

Para cada lista de números de SEDOLs de 6 dígitos, calcule e anexe o dígito da soma de verificação.

Isto é, dada a string de entrada à esquerda, sua função deve retornar a string correspondente à direita:

 <pre> 710889 => 7108899 B0YBKJ => B0YBKJ7 406566 => 4065663 B0YBLH => B0YBLH2 228276 => 2282765 B0YBKL => B0YBKL9 557910 => 5579107 B0YBKR => B0YBKR5 585284 => 5852842 B0YBKT => B0YBKT7 B00030 => B000300 </pre> 

Verifique também se cada entrada está formada corretamente, especialmente com relação aos caracteres válidos permitidos em uma string SEDOL. Sua função deve retornar null em entrada inválida.

Instructions

Tests

tests:
  - text: <code>sedol</code> é uma função.
    testString: 'assert(typeof sedol === "function", "<code>sedol</code> is a function.");'
  - text: '<code>sedol(&#39;a&#39;)</code> deve retornar null. &quot;)'
    testString: 'assert(sedol("a") === null, "<code>sedol("a")</code> should return null.");'
  - text: '<code>sedol(&#39;710889&#39;)</code> deve retornar &#39;7108899&#39;. &quot;)'
    testString: 'assert(sedol("710889") === "7108899", "<code>sedol("710889")</code> should return "7108899".");'
  - text: '<code>sedol(&#39;BOATER&#39;)</code> deve retornar null. &quot;)'
    testString: 'assert(sedol("BOATER") === null, "<code>sedol("BOATER")</code> should return null.");'
  - text: '<code>sedol(&#39;228276&#39;)</code> deve retornar &#39;2282765&#39;. &quot;)'
    testString: 'assert(sedol("228276") === "2282765", "<code>sedol("228276")</code> should return "2282765".");'

Challenge Seed

function sedol (input) {
  // Good luck!
  return true;
}

Solution

// solution required