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 أيام
أرشيف المشاركات
#include <bits/stdc++.h> #define n 3 using namespace std; int findLongestFromACell(int i, int j, int mat[n][n], int dp[n][n]) { if (i < 0 i >= n j < 0 || j >= n) return 0; if (dp[i][j] != -1) return dp[i][j]; int x = INT_MIN, y = INT_MIN, z = INT_MIN, w = INT_MIN; if (j < n - 1 && ((mat[i][j] + 1) == mat[i][j + 1])) x = 1 + findLongestFromACell(i, j + 1, mat, dp); if (j > 0 && (mat[i][j] + 1 == mat[i][j - 1])) y = 1 + findLongestFromACell(i, j - 1, mat, dp); if (i > 0 && (mat[i][j] + 1 == mat[i - 1][j])) z = 1 + findLongestFromACell(i - 1, j, mat, dp); if (i < n - 1 && (mat[i][j] + 1 == mat[i + 1][j])) w = 1 + findLongestFromACell(i + 1, j, mat, dp); return dp[i][j] = max({x, y, z, w, 1}); } int LongestPath(int mat[n][n]) { int result = 1; int dp[n][n]; memset(dp, -1, sizeof dp); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { if (dp[i][j] == -1) findLongestFromACell(i, j, mat, dp); result = max(result, dp[i][j]); } } return result; } int main() { int mat[n][n] = {{1, 2, 9}, {5, 3, 8}, {4, 6, 7}}; cout << "Length of the longest path is " << LongestPath(mat); return 0; }

photo content

Atlassian Software Development Engineer I, Backend https://jobs.lever.co/atlassian/db4f7e89-091b-47c1-8971-0b8abd9f959c

Coding channel @codewithvirus. 👈 Main group @avirustech 🔴 👈 Accenture. @Accenturavirustech👈 IBM. @IBMavirustech 👈 Tech Mahindra. @TechMavirustech 👈 Infosys. @Infosyavirustech 👈 TCS. @TCSavirustech 👈 Amazon. @Amazonavirustech 👈

// C Solution The Third Problem void codewithvirus() { ll n, mn = 0, p0 = -1, p1 = -1, cnt = 0, CountS = 2, ans = 1; cin >> n; vector<int> vec(n), vec1(n); for (int i = 0; i < n; i++) { cin >> vec[i]; } if (n == 1 || n == 2) { cout << 1; return; } for (int i = 0; i < n; i++) { if (vec[i] == 0) p0 = i; else if (vec[i] == 1) p1 = i; vec1[vec[i]] = i; } sort(vec.begin() + min(p0, p1), vec.begin() + max(p0, p1) + 1); for (int i = min(p0, p1); i <= max(p0, p1); i++) { if (mn != vec[i]) break; else mn++; } ll minn = min(p0, p1), maxxx = max(p0, p1); ll lengthss = maxxx - minn + 1; for (int i = 2; i < n; i++) { if (vec1[i] < minn) { CountS++; minn = vec1[i]; lengthss = maxxx - minn + 1; } else if (vec1[i] > maxxx) { CountS++; maxxx = vec1[i]; lengthss = maxxx - minn + 1; } else { ans = (ans * (lengthss - CountS)) % 1000000007; CountS++; } } cout << ans; }

//B Solution Almost Ternary Matrix void codewithvirus() { int n, m; cin >> n >> m; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { cout << ((((i / 2) + (j / 2)) & 1) ^ (((i & 1) + (j & 1)) & 1)) << " "; } cout << endl; } }

//A Solution The Third Three Number Problem void codewithvirus() { int n; cin >> n; if (n % 2 != 0) cout << -1; else cout << 0 << " " << 0 << " " << n / 2; }

// Infosys // N flowers on a Recatangular pana int ans = 100000000; void solve(vector<int> a, int n, int k, int index, int sum, int maxsum) { if (k == 1) { maxsum = max(maxsum, sum); sum = 0; for (int i = index; i < n; i++) { sum += a[i]; } maxsum = max(maxsum, sum); ans = min(ans, maxsum); return; } sum = 0; for (int i = index; i < n; i++) { sum += a[i]; maxsum = max(maxsum, sum); solve(a, n, k - 1, i + 1, sum, maxsum); } } int GetMaxBeauty(int N, int K, vector<int> A) { solve(A, N, K, 0, 0, 0); return ans; } // @codewithvirus // @codewithvirus // @codewithvirus // @codewithvirus