Skip to content

Instantly share code, notes, and snippets.

/**
* Auto-generated code below aims at helping you parse
* the standard input according to the problem statement.
**/
const L = parseInt(readline());
const H = parseInt(readline());
const T = readline();
const tetxtToASCIIStartAtZero = T.split('').map(e => e.toUpperCase().charCodeAt(0) - 65);