reversedIntCompare function

int reversedIntCompare(
  1. int a,
  2. int b
)

Implementation

int reversedIntCompare(int a, int b) => b - a;