static S wordScoreBySet(S text, Set<S> set1, Set<S> set2, S a, S b) { int score = 0; for (S word : words(text)) score += zeroOne(set1.contains(word))-zeroOne(set2.contains(word)); ret score > 0 ? a : score < 0 ? b : null; }
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1014315 | 
| Snippet name: | wordScoreBySet | 
| Eternal ID of this version: | #1014315/1 | 
| Text MD5: | 632836074defb0a1461839569aa6e4a1 | 
| Author: | stefan | 
| Category: | javax | 
| Type: | JavaX fragment (include) | 
| Public (visible to everyone): | Yes | 
| Archived (hidden from active list): | No | 
| Created/modified: | 2018-04-20 02:52:02 | 
| Source code size: | 238 bytes / 6 lines | 
| Pitched / IR pitched: | No / No | 
| Views / Downloads: | 605 / 661 | 
| Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1014323 - ngramScoreBySet |