jgburet / chemical-composition

[technical-test] For a given string formula, count the number of atoms.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Chemical Composition

For a given chemical formula represented by a string, write a function that counts the number of atoms of each element contained in the molecule and returns an object where keys correspond to atoms and values to the number of each atom in the molecule.

For example:

var water = 'H2O'
parse_molecule(water)                 // return {'H': 2, 'O': 1}
var magnesium_hydroxide = 'Mg(OH)2'
parse_molecule(magnesium_hydroxide)   // return {'Mg': 1, 'O': 2, 'H': 2}
var fremy_salt = 'K4[ON(SO3)2]2'
parse_molecule(fremy_salt)             // return {'K': 4, 'O': 14, 'N': 2, 'S': 4}

As you can see, some formulas have brackets in them. The index outside the brackets tells you that you have to multiply count of each atom inside the bracket on this index. For example, in Fe(NO3)2 you have one iron atom, two nitrogen atoms and six oxygen atoms.

Note that brackets may be round, square or curly and can also be nested. Index after the braces is optional.

Run the test suite

yarn
yarn test

Fun fact

const a = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']
let g;
function* newGen(ns) {
  for (const n of ns) { yield n };
}

This:

function take2(ns) {
  let i = 0;
  for (const n of ns) {
    console.log(n);
    i++;
    if (i >= 3) break;
  }
}
g = newGen(a)
g.next()
take2(g)
g.next()

... differs from:

function takeTwo(ns) {
  let i = 0;
  while (i < 2) {
    const n = ns.next().value();
    console.log(n);
    i++;
  }
}
g = newGen(a)
g.next()
takeTwo(g)
g.next()

From the documentation:

each Generator may only be iterated once

That's bitchy (:

About

[technical-test] For a given string formula, count the number of atoms.

License:MIT License


Languages

Language:JavaScript 100.0%