-
Notifications
You must be signed in to change notification settings - Fork 161
feat(verify.cpp): implemented array search #455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat(verify.cpp): implemented array search #455
Conversation
|
codestyle fails |
| cout << "The number is "; | ||
| if(!present){ //not present | ||
| cout << "not "; | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not bad 👍
| // placeholder | ||
| int N[10] = {3, 4, 5, 1, 2, 3, 4, 9, 13, 0}; | ||
| int N[] = {3, 4, 5, 1, 2, 3, 4, 9, 13, 0}; | ||
| size_t arrSize = 10; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dimensione t mi è sempre sembrato poco chiaro e significativo come "nome" del tipo
di fatto è un unsigned long, non so quanto convenga usare size_t rispetto ad altri tipi
No description provided.