315.count-of-smaller-numbers-after-self.go 63 B

1234
  1. func countSmaller(nums []int) []int {
  2. n := len(nums)
  3. if n
  4. }