fa
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، کانال فعالیت پایداری دارد. در ۳۰ روز گذشته تغییر اعضا برابر -87 و در ۲۴ ساعت گذشته برابر 0 بوده و همچنان دسترسی گسترده‌ای حفظ شده است.

  • وضعیت تأیید: تأیید نشده
  • نرخ تعامل (ER): میانگین تعامل مخاطب 0% است و در ۲۴ ساعت نخست پس از انتشار، محتوا معمولاً 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