You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: