-
Notifications
You must be signed in to change notification settings - Fork 169
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
Велиев Эльвин. Задача 1. Вариант 11. Сумма значений по строкам матрицы #791
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #791 +/- ##
==========================================
- Coverage 93.53% 93.53% -0.01%
==========================================
Files 1086 1293 +207
Lines 38421 46864 +8443
Branches 17382 21601 +4219
==========================================
+ Hits 35938 43833 +7895
- Misses 867 1046 +179
- Partials 1616 1985 +369 ☔ View full report in Codecov by Sentry. |
|
||
for (auto &row : data) { | ||
for (auto &el : row) { | ||
el = -200 + gen() % (300 + 200 + 1); |
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.
please paramterize it in tests
...