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
And anyone understand (6): 'ให้นําค่าเฉลี่ยคะแนนของแต่ละพรรคการเมืองต่อจํานวนสมาชิกสภาผู้แทนราษฎรที่พึงมีหนึ่งคนมาพิจารณา ' .. is that average value the same for all parties????
p.repCeiling = p.voteCount / score4Rep
Now (6) suggests to do this ... p.voteCount/p.repCeiling ... that is score4Rep, right? And that should be the same for all parties, right? Do I miss something?
I think you meant partyListCandidateCount > 0 instead of partyListMemberCount > 0 but I got your point. I would be great if you can create PR on the test case that will be failed on the current version.
About (6) please create a separate issue for further discussion :)
'I would be great if you can create PR on the test case that will be failed on the current version.' --> you mean if I could fix the issue and create a pull request to the master? If so, then of course I can. As I said I am totally new to contributing to github, I just want to be sure ;)
Can you assign the issue to me? I will fix / and add test for it.
Regarding (6), indeed, I will create a separate issue.
มาตรา ๑๒๘
(๑) นําคะแนนรวมทั้งประเทศที่พรรคการเมืองทุกพรรคที่ส่งผู้สมัครแบบบัญชีรายชื่อได้รับ
จากการเลือกตั้งแบบแบ่งเขตเลือกตั้งหารด้วยห้าร้อยอันเป็นจํานวนสมาชิกทั้งหมดของสภาผู้แทนราษฎร
Hence, getAllValidScores should only include party.voteCount only when party.partyListMemberCount && party.partyListMemberCount>0
const getAllValidScores = (parties: IParty[]) =>
parties.reduce((result, party) => {
return result + party.voteCount
}, 0)
The text was updated successfully, but these errors were encountered: