Skip to content
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

feat: day 14 easy solution updated #147

Merged
merged 3 commits into from
Apr 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 51 additions & 1 deletion easy/day_14/solution.cpp
Original file line number Diff line number Diff line change
@@ -1 +1,51 @@
//write your code here
#include <bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin >> t;
while (t--)
{
int n;
cin >> n;
int arr[n];
int count = 0;
for (int i = 0 ; i < n; i++)
{
cin >> arr[i];
if (arr[i] == 2)
{
count++;
}
}
if (n == 1)
{
cout << -1 << endl;
continue;
;
}
if (count % 2 == 1)
{
cout << -1 << endl;
continue;
}

else
{
int count2 = 0;
int i = 0;
while (count2 <(count / 2))
{
if (arr[i] == 2)
{
count2++;
}
i++;
}
if (i == 0)
i++;

cout << i << endl;
}
}
}
Loading