Skip to content

Instantly share code, notes, and snippets.

@lowjoel
lowjoel / Matric.js
Created August 24, 2013 13:59
NUS Matriculation Number Checksum
function matric(noLetter) {
var type = noLetter.charAt(0);
if (type === 'U') {
type = 1;
var weights = [6, 11, 12, 10, 12, 0];
} else if (type === 'A') {
type = 2;
var weights = [-1, -1, -1, -1, -1, -1];
} else {
return undefined;