ar
Feedback
Code With Virus

Code With Virus

الذهاب إلى القناة على Telegram

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

إظهار المزيد

📈 نظرة تحليلية على قناة تيليجرام 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