uk
Feedback
Code With Virus

Code With Virus

Відкрити в Telegram

Coding channel @codewithvirus. 👈 Main group @avirustech 👈 Accenture @Accenturavirustech 👈 IBM. @IBMavirustech 👈 Tech Mahindra. @TechMavirustech 👈

Показати більше

📈 Аналітичний огляд Telegram-каналу Code With Virus

Канал Code With Virus (@codewithvirus) у мовному сегменті Англійська є активним учасником. На даний момент спільнота об'єднує 10 559 підписників, посідаючи 10 501 місце в категорії Технології та додатки та 43 593 місце у регіоні Індія.

📊 Показники аудиторії та динаміка

З моменту свого створення невідомо, проект продемонстрував стрімке зростання, зібравши аудиторію у 10 559 підписників.

За останніми даними від 04 грудня, 2025, канал демонструє стабільну активність. Хоча за останні 30 днів спостерігається зміна кількості учасників на -87, а за останні 24 години на 0, загальне охоплення залишається високим.

  • Статус верифікації: Не верифікований
  • Рівень залученості (ER): Середній показник залученості аудиторії становить 0%. Протягом перших 24 годин після публікації контент зазвичай збирає N/A% реакцій від загальної кількості підписників.
  • Охоплення публікацій: В середньому кожен допис отримує 0 переглядів. Протягом першої доби публікація в середньому набирає 0 переглядів.
  • Реакції та взаємодія: Аудиторія активно підтримує контент: середня кількість реакцій на один пост – 0.

📝 Опис та контентна політика

Автор описує ресурс як майданчик для висловлення суб'єктивної думки:
Coding channel @codewithvirus. 👈 Main group @avirustech 👈 Accenture @Accenturavirustech 👈 IBM. @IBMavirustech 👈 Tech Mahindra. @TechMavirustech 👈

Завдяки високій частоті оновлень (останні дані отримано 05 грудня, 2025), канал підтримує актуальність та високий рівень охоплення публікацій. Аналітика показує, що аудиторія активно взаємодіє з контентом, що робить його важливою точкою впливу в категорії Технології та додатки.

10 559
Підписники
Немає даних24 години
-227 днів
-8730 днів
Архів дописів
Atlassian Women in Tech Program! Internship and FTE at Atlassian. Batch : 2023 and 2024 female passouts! CTC : 80 Lakhs 😛 Link : https://docs.google.com/forms/d/e/1FAIpQLSff4uzWGW49qXXj9tv_8NLJprI4gUunElRPgqbRZgVdpk1pXQ/viewform?usp=send_form

Guys who are applied If you are applied then please message me on my Instagram then i will try to help you in exam 🙂

photo content
+1

Guys if anyone knows kandada language Then please message me on instagram

Zoho 1 If I were ever impolite, I apologize. 2 Agnes is not such an arrogant person as people say. 3 I was thrilled to see my cousins after 20 years. 4 It is time you went home 5 He had left for Shimla early and he must be reached by now. 6 Krishnamachari Shrikanth is a union official. 7 It was already informed that each of the students must produce his/her aadhar card before participating in the competition 8 We have a few kilometers to go but there is only tiny petrol left in the tank! 9 When Samhita reached the station, the train had already left. 10 Musharraf had saved seats for all of us at the theatre By the time he comes back from Kochi, the paper boy will have left 15 newspapers.

#include <iostream> #include <bits/stdc++.h> using namespace std; int main() {    int N;    cin >> N;    vector<pair<int, int> > times;    while (N--)    {       string str;       cin >> str;       stringstream ss(str);       string tmp, start_time, end_time;       int st = 0, et = 0;       getline(ss, tmp, ',');       getline(ss, start_time, ',');       getline(ss, end_time, ',');       stringstream s1(start_time);       getline(s1, tmp, ':');       st += stoi(tmp) * 60 * 60;       getline(s1, tmp, ':');       st += stoi(tmp) * 60;       getline(s1, tmp, ':');       st += stoi(tmp);       stringstream s2(end_time);       getline(s2, tmp, ':');       et += stoi(tmp) * 60 * 60;       getline(s2, tmp, ':');       et += stoi(tmp) * 60;       getline(s2, tmp, ':');       et += stoi(tmp);       times.push_back({st, et});    }    int check_time = 0;    string tmp;    cin >> tmp;    stringstream ss(tmp);    getline(ss, tmp, ':');    check_time += stoi(tmp) * 60 * 60;    getline(ss, tmp, ':');    check_time += stoi(tmp) * 60;    getline(ss, tmp, ':');    check_time += stoi(tmp);    int ans = 0;    for (auto i : times)    {       if (check_time >= i.first && check_time <= i.second)          ans++;    }    cout << ans << endl;    return 0; }

photo content

#include <iostream> #include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; vector<pair<int, int> > times; while (N--) { string str; cin >> str; stringstream ss(str); string tmp, start_time, end_time; int st = 0, et = 0; getline(ss, tmp, ','); getline(ss, start_time, ','); getline(ss, end_time, ','); stringstream s1(start_time); getline(s1, tmp, ':'); st += stoi(tmp) * 60 * 60; getline(s1, tmp, ':'); st += stoi(tmp) * 60; getline(s1, tmp, ':'); st += stoi(tmp); stringstream s2(end_time); getline(s2, tmp, ':'); et += stoi(tmp) * 60 * 60; getline(s2, tmp, ':'); et += stoi(tmp) * 60; getline(s2, tmp, ':'); et += stoi(tmp); times.push_back({st, et}); } int check_time = 0; string tmp; cin >> tmp; stringstream ss(tmp); getline(ss, tmp, ':'); check_time += stoi(tmp) * 60 * 60; getline(ss, tmp, ':'); check_time += stoi(tmp) * 60; getline(ss, tmp, ':'); check_time += stoi(tmp); int ans = 0; for (auto i : times) { if (check_time >= i.first && check_time <= i.second) ans++; } cout << ans << endl; return 0; }

photo content

I was forgot to take pic for 2 nd code 😬

photo content

photo content
+1

photo content

Repost from Code With Virus
Serena and flowers @codewithvirus Python
+1
Serena and flowers @codewithvirus Python