Certification calculation bug #29
Unanswered
larsb-dev
asked this question in
Report a bug
Replies: 1 comment
-
|
Thank for reporting, you are right, I'll change the calculation so that everyone can received the certification without requiring more challenges |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
It says "Complete at least 70% of the roadmap and a minimum of 8 challenges to earn this certificate".
As you can see, I've completed all the theory lessens 14/14 and the minimum required challenges of 8/19. I should be able to request the certification now. However, I have a total score of 67% and can't apply. This logic is broken.
Here's why
theoryLessons = 14;
challenges = 19;
total = theoryLessons + challenges;
percentagePerActivity = 1 / totalLessons;
challengesToBeCertified = 8
percentageOfChallenges = challengesToBeCertified * percentagePerActivity * 100
percentagesLeftToBeCertified = 70 - percentageOfChallenges
percentagePerTheoryLesson = percentagesLeftToBeCertified / theoryLessons
Main point: With the current implementation it's impossible to receive a certification if you have only completed 8 challanges and all theory lessons.
For me it would be the most logical to be at 70% once you have completed 8 challenges and all theory lessons.
Beta Was this translation helpful? Give feedback.
All reactions