#!/bin/bash

awk -F":" '{
    a[$2":"$3]++
}END{
    for(i in a){
        printf "%s %s\n",a[i],i
    }
}' nowcoder.txt | sort -rn