79828508

Date: 2025-11-24 10:29:52
Score: 0.5
Natty:
Report link
//try this
function sortDigitDescending(num){
return Number(
String(num).split("").sort((a,b)=>b-a).join("")
);
}
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: PCDOND