Solution 1:
Try:
find . ! -perm -g+r
Solution 2:
If you want to find files that are non-readable by you, you could use
find . ! -readable
Try:
find . ! -perm -g+r
If you want to find files that are non-readable by you, you could use
find . ! -readable