Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Harshadi Hansora on LinkedIn: Google Forms: Sign-in
Hi everyone,
Salesforce is aggressively hiring for the position of 2025 batch graduates as AMTS in Bangalore & Hyderabad.
Here are the experienceโฆ
Salesforce is aggressively hiring for the position of 2025 batch graduates as AMTS in Bangalore & Hyderabad.
Here are the experienceโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Abhishek Srivastava on LinkedIn: Google Forms: Sign-in
Hi everyone,Coding Blocks is looking to hire passionate and knowledgeable instructors in the following areas:
Data Science (Delhi)
Web Development: MERN Stack (Mathura and Chandigarh)
If you have a strong foundation in these domains and are interested inโฆ
Data Science (Delhi)
Web Development: MERN Stack (Mathura and Chandigarh)
If you have a strong foundation in these domains and are interested inโฆ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
We are hiring for a backend(Django) developer role in Bengaluru. Freshersโฆ | Dinesh Singh | 15 comments
We are hiring for a backend(Django) developer role in Bengaluru. Freshers are preferred, we love the energy they bring with them :)
Me and Nilesh are looking for our third partner in crime to join us at topmate.io
If you live, breathe, and sleep codingโฆ
Me and Nilesh are looking for our third partner in crime to join us at topmate.io
If you live, breathe, and sleep codingโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Sign Up | LinkedIn
500 million+ members | Manage your professional identity. Build and engage with your professional network. Access knowledge, insights and opportunities.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Fatima Shaikh on LinkedIn: #hiringalert #pythonintern | 51 comments
#hiringalert #pythonintern
Techolution is currently seeking talented Python Interns to join our dynamic team of innovators and help drive the development of our AI products from conception to deployment.
Title : Python Intern
Location : Hyderabad (Onsite)โฆ
Techolution is currently seeking talented Python Interns to join our dynamic team of innovators and help drive the development of our AI products from conception to deployment.
Title : Python Intern
Location : Hyderabad (Onsite)โฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Faris M V on LinkedIn: #teksystems #allegisgroup #allegisgroup #teksystems #hiring #recruiterjobsโฆ
Hey LinkedIn Community,
We at #TEKsystems, #AllegisGroup are hiring Technical Recruiters with experience ranging from fresher to 5 years.
If you'reโฆ
We at #TEKsystems, #AllegisGroup are hiring Technical Recruiters with experience ranging from fresher to 5 years.
If you'reโฆ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
GWC Data.AI on LinkedIn: #freshers #hiring #data #ai #dataanalyst #dataengineer #ml #datascience | 196 comments
๐๐ ๐๐ซ๐ ๐ก๐ข๐ซ๐ข๐ง๐ ๐
๐ซ๐๐ฌ๐ก๐๐ซ๐ฌ ๐๐ ๐๐ข๐ง!
๐ธ๐๐๐๐๐๐๐๐๐๐๐๐:
โ B.Tech (IT), B.E, MCA, BCA, B.Sc in CS
โ Proficient in SQL & Python
โ Goodโฆ | 196 comments on LinkedIn
๐ธ๐๐๐๐๐๐๐๐๐๐๐๐:
โ B.Tech (IT), B.E, MCA, BCA, B.Sc in CS
โ Proficient in SQL & Python
โ Goodโฆ | 196 comments on LinkedIn
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <bits/stdc++.h>
using namespace std;
const int P = 1000000007;
int solve(string N, int K) {
if (K == 0) {
return 1;
}
int len = N.size();
int num[1010] = {0};
int f[1010][1010][2] = {0};
int ans = 0;
for (int i = 2; i <= 1000; i++) {
num[i] = num[__builtin_popcount(i)] + 1;
}
f[0][0][0] = 1;
for (int i = 0; i < len; i++) {
for (int j = 0; j <= i; j++) {
for (int k = 0; k < 2; k++) {
for (int l = 0; l <= (k ? 1 : (N[i] - '0')); l++) {
(f[i + 1][j + l][k | (l < N[i] - '0')] += f[i][j][k]) %= P;
}
}
}
}
for (int i = 1; i <= 1000; i++) {
if (num[i] == K - 1) {
(ans += f[len][i][0]) %= P;
(ans += f[len][i][1]) %= P;
}
}
if (K == 1) {
ans = (ans + P - 1) % P;
}
return ans;
}
int main() {
string s;
int k;
cin >> s >> k;
cout << solve(s, k) << endl;
return 0;
}
Possible decryption โ
๐2
int solve(int x1, int y1, int x2, int y2, int cx, int cy, int R)
{
int count = 0;
int R_squared = R * R;
for (int y = y1; y <= y2; ++y)
{
int dy_squared = (y - cy) * (y - cy);
if (dy_squared > R_squared)
continue;
int dx = static_cast<int>(sqrt(R_squared - dy_squared));
int min_x = std::max(x1, cx - dx);
int max_x = std::min(x2, cx + dx);
if (min_x <= max_x)
{
count += (max_x - min_x + 1);
}
}
return count;
}
int main()
{
int x1 = 1, y1 = 1, x2 = 100000, y2 = 100000, cx = 50000, cy = 50000, R = 1000;
cin >> x1 >> y1 >> x2 >> y2 >> cx >> cy >> R;
cout << solve(x1, y1, x2, y2, cx, cy, R) << endl;
return 0;
}
//Cordinates sprinkler โ
{
int count = 0;
int R_squared = R * R;
for (int y = y1; y <= y2; ++y)
{
int dy_squared = (y - cy) * (y - cy);
if (dy_squared > R_squared)
continue;
int dx = static_cast<int>(sqrt(R_squared - dy_squared));
int min_x = std::max(x1, cx - dx);
int max_x = std::min(x2, cx + dx);
if (min_x <= max_x)
{
count += (max_x - min_x + 1);
}
}
return count;
}
int main()
{
int x1 = 1, y1 = 1, x2 = 100000, y2 = 100000, cx = 50000, cy = 50000, R = 1000;
cin >> x1 >> y1 >> x2 >> y2 >> cx >> cy >> R;
cout << solve(x1, y1, x2, y2, cx, cy, R) << endl;
return 0;
}
//Cordinates sprinkler โ
Contiguous substring โ
#include <bits/stdc++.h>
using namespace std;
int gcd(int a, int b) {
return b == 0 ? a : gcd(b, a % b);
}
int main() {
int n, a, b;
cin >> n >> a >> b;
map<pair<int, int>, int> slope_map;
for (int i = 0; i < n; ++i) {
int x, y;
cin >> x >> y;
int dy = y - b;
int dx = x - a;
int g = gcd(dx, dy);
dy /= g;
dx /= g;
if (dx < 0) {
dy = -dy;
dx = -dx;
} else if (dx == 0) {
dy = abs(dy);
}
slope_map[{dy, dx}]++;
}
int aa = 0;
for (auto &entry : slope_map) {
int count = entry.second;
aa += count * (count - 1) / 2;
}
cout << aa << endl;
return 0;
}
MAQ Software โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <bits/stdc++.h>
using namespace std;
bool isVowel(char c) {
return c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u';
}
vector<int> hasVowels(vector<string>& strArr, vector<string>& queries) {
int n = strArr.size();
vector<int> prefix(n + 1, 0);
for (int i = 0; i < n; i++) {
bool startsAndEndsWithVowel = isVowel(strArr[i][0]) && isVowel(strArr[i].back());
prefix[i + 1] = prefix[i] + (startsAndEndsWithVowel ? 1 : 0);
}
vector<int> results;
for (string query : queries) {
int l, r;
sscanf(query.c_str(), "%d-%d", &l, &r);
l--; r--;
int count = prefix[r + 1] - prefix[l];
results.push_back(count);
}
return results;
}
IBM HASVOWELโ
class UnionFind:
def __init__(self, n):
self.parent = list(range(n))
self.rank = [0] * n
self.components = n
def find(self, x):
if self.parent[x] != x:
self.parent[x] = self.find(self.parent[x])
return self.parent[x]
def union(self, x, y):
px, py = self.find(x), self.find(y)
if px != py:
if self.rank[px] < self.rank[py]:
self.parent[px] = py
elif self.rank[px] > self.rank[py]:
self.parent[py] = px
else:
self.parent[py] = px
self.rank[px] += 1
self.components -= 1
def minOperations(compNodes, compFrom, compTo):
uf = UnionFind(compNodes + 1)
for u, v in zip(compFrom, compTo):
uf.union(u, v)
operations = uf.components - 2
return operations if operations >= 0 else -1
IBM computer networks โ