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 أيام
أرشيف المشاركات
JUSPAY Job Role:- Software Developer Experiened Required:- 1 to 5 years Eligibility:- AnyOne Can apply Salary Range:- 8 - 30 LPA (Depend upon interview )

photo content
+1

photo content
+1

photo content
+1

IBM Research India Summer 2023 Internship Program - Applications invited Last date to receive the application is November 14, 2022. https://researcher.draco.res.ibm.com/researcher/view_group_subpage.php?id=8101

// import java.util.Scanner; class Main { static boolean iskaprekar(int n) { if (n == 1) return true; int s = n * n; int c = 0; while (s != 0) { c++; s /= 10; } s = n * n; for (int i = 1; i < c; i++) { int e = (int) Math.pow(10, i); if (e == n) continue; int sum = s / e + s % e; if (sum == n) return true; } return false; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); if (n <= 0) System.out.println("-1"); else if (iskaprekar(n)) System.out.println("TRUE"); else System.out.println("FALSE"); } }

photo content
+3

Goldman Sachs Internship Drive 2022 | New Analyst Program | Fresher Job | Graduate Job 2022 & 2023 Job Role : New Analyst Program Qualification: Bachelor's Or Master's Degree Batch:2022, 2023 Experience: Fresher Job Location : Bangalore Apply Link: https://bit.ly/3BVgaE4

// 207. Course Schedule class Solution { public: bool DFS(int s, vector<bool> &visted, vector<bool> &cuttVisteed, vector<int> adj[]) { visted[s] = true; cuttVisteed[s] = true; vector<int> data = adj[s]; for (auto x : data) { if (!visted[x]) { if (DFS(x, visted, cuttVisteed, adj)) { return true; } } else if (visted[x] && cuttVisteed[x]) { return true; } } cuttVisteed[s] = false; return false; } bool canFinish(int numCourses, vector<vector<int>> &prerequisites) { vector<bool> visted(numCourses, false), cuttVisteed(numCourses, false); vector<int> adj[numCourses]; for (auto x : prerequisites) { vector<int> data = x; int a = data[0]; int b = data[1]; adj[a].push_back(b); } for (int i = 0; i < numCourses; i++) { if (!visted[i]) { if (DFS(i, visted, cuttVisteed, adj)) { return false; } } } return true; } }; //C++ topological sort DFS || Easy Solution