We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1bba42 commit 6697b40Copy full SHA for 6697b40
tools/awk/max.awk
@@ -15,7 +15,7 @@
15
max = $1
16
}
17
{
18
- if ( $1 > max ) {
+ if ($1 > max) {
19
20
21
tools/awk/median.awk
@@ -18,7 +18,7 @@ BEGIN {
END {
j = i/2
- if ( i%2 == 1 ) {
+ if (i%2 == 1) {
22
median = a[int(j)]
23
} else {
24
median = (a[j] + a[j-1])/2
tools/awk/min.awk
min = $1
- if ( $1 < min ) {
+ if ($1 < min) {
0 commit comments