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
{{ message }}
This repository was archived by the owner on Dec 3, 2024. It is now read-only.
A magic number is a number that comes out of nowhere without existing declaration or explanation. In order to improve readability and maintainability magic numbers must be avoided.
Note that -1, 0 and 1 are not considered as magic numbers
Such values should be either related to existing const variables already declared or declared as const if non existing.
These values are commonly found in iterations, size declaration etc...
The text was updated successfully, but these errors were encountered:
A magic number is a number that comes out of nowhere without existing declaration or explanation. In order to improve readability and maintainability magic numbers must be avoided.
Note that -1, 0 and 1 are not considered as magic numbers
Such values should be either related to existing const variables already declared or declared as const if non existing.
These values are commonly found in iterations, size declaration etc...
The text was updated successfully, but these errors were encountered: