You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// The rows are kind of grouped by two, their "base value" is changed every two rows (0, 10, 20, 30, ...), the "& ~1" is just a fancy way to round down to even
const row = ((r - 1) & ~1) * 5;
// The column value, when read from left to right, is increased by 2. And if the row is odd, the final value is increased by 1