Open abrad45 opened 3 years ago
Notes from 1/22 Call:
const stars = [false, false, false, true, false, true];
const addStar = (i = -1) => {
// if i === -1, mark the leftmost false as true
// if 0 <= i <= 5, mark that star as true
}
// potential state?
realmData: [
{
type: 1, // [0,9]
stars: 3, // [0,6] or not... see stars[] above!
calculate: false,
},
{
type: 4, // [0,9]
stars: 0, // [0,6]
calculate: true,
},
],
Notes from planning call on 11/6: