Since you're using bash, you can do this without external tools like sed, awk or find.
#!/bin/bash
shopt -s globstar
for filename in **/*a*a*; do
[[ "$filename" =~ u ]] || echo "$filename"
done
If this absolutely has to be awk, I would use:
awk '/a.*a/ && ! /u/' data
UPDATE:
Per gniourf_gniourf's polite admonishment, you may get better performance using pathname expansion (globs) instead of a regexp. Here's a (non-scientific) benchmark:
$ rm -f file
$ for (( i=1000000; i-- ; )); do echo u >> file; done
$ time bash -c 'while read i; do [[ $i = *u* ]]; done < file'
real 0m8.291s
user 0m6.570s
sys 0m1.717s
$ time bash -c 'while read i; do [[ $i =~ u ]]; done < file'
real 0m10.416s
user 0m8.676s
sys 0m1.735s
The "user" line is the one we're interested in.
This makes it appear as if the fileglob runs about 30% faster than the regex, testing a million records with positive results.
Oddly, there isn't so much of an improvement when tests fail:
$ time bash -c 'while read i; do [[ $i = *a* ]]; done < file'
real 0m8.244s
user 0m6.601s
sys 0m1.639s
$ time bash -c 'while read i; do [[ $i =~ a ]]; done < file'
real 0m9.757s
user 0m8.121s
sys 0m1.630s
This is only a 23% speed improvement on these million tests. If this sort of optimization of shell scripts is important (because you're running millions of tests and don't feel that you have any CPU cycles to spare), then please do consider gniourf_gniourf's suggestion when your course moves on from awk to bash.