feat: 🎸 simulation

fix dps and add the push and DPS strategy
This commit is contained in:
Julien Calixte
2023-07-26 19:33:12 +02:00
parent 1f49b0f755
commit 4af91102b8
9 changed files with 125 additions and 54 deletions

View File

@@ -10,16 +10,17 @@ onMounted(() => featureStore.initBoard())
const pullAndProblemSolving20Percent = () => {
if (featureStore.meta.totalDays % 5 === 0) {
featureStore.nextDay('problem-solving')
featureStore.nextDay('pull-dps')
} else {
featureStore.nextDay('pull')
}
}
const pushAndProblemSolving20Percent = () => {
if (featureStore.meta.totalDays % 5 === 0) {
featureStore.nextDay('problem-solving')
featureStore.nextDay('push-dps')
} else {
featureStore.nextDay('pull')
featureStore.nextDay('push')
}
}
</script>