Goal is to find a better way to implement features of #5 .
Currently we are adding each value to an array like this:
for i in {65..69}; do category[$i]="Gazelle"; done
for i in {70..79}; do category[$i]="Horse"; done
Find better solution to increase performance.
Goal is to find a better way to implement features of #5 .
Currently we are adding each value to an array like this:
for i in {65..69}; do category[$i]="Gazelle"; done
for i in {70..79}; do category[$i]="Horse"; done
Find better solution to increase performance.