Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
CGI is hiring Freshers!
Position: Cyber Security
Qualifications: Bachelorโs/ Masterโs Degree
Salary: 5 - 7 LPA (Expected)
Experience: Fresher
Location: Bangalore, India
๐Apply Now: https://cgi.njoyn.com/corp/xweb/xweb.asp?clid=21001&page=jobdetails&jobid=J0624-0119&BRID=1135170&SBDID=943
Position: Cyber Security
Qualifications: Bachelorโs/ Masterโs Degree
Salary: 5 - 7 LPA (Expected)
Experience: Fresher
Location: Bangalore, India
๐Apply Now: https://cgi.njoyn.com/corp/xweb/xweb.asp?clid=21001&page=jobdetails&jobid=J0624-0119&BRID=1135170&SBDID=943
Njoyn
Careers
CGI offers more than a job. We offer limitless opportunities to make a difference for the clients and communities we serve. Explore CGIโyour next career.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
ll minimum_digit(ll n,ll sum)
{
if(sum==0) return -1;
if(n==1) return -1;
if(sum>9*n) return -1;
string ans;
sum--;
n--;
for(ll i=n-1;i>0;i--)
{
if(sum>9) sum-=9,ans+=('9');
else ans+=('0'+sum),sum=0;
}
ans+=('0'+sum+1);
reverse(ans.begin(),ans.end());
//cout<<ans<<endl;
char c=ans[0];
string tt="";
tt+=c;
tt+='0';
tt+=ans.substr(1);
return stoll(tt);
}
signed main()
{
ll n,sum; cin>>n>>sum;
cout<<minimum_digit(n,sum);
}
Digit sum zero โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
#include<bits/stdc++.h> using namespace std; #define ll long long ll minimum_digit(ll n,ll sum) { if(sum==0) return -1; if(n==1) return -1; if(sum>9*n) return -1; string ans; sum--; n--; for(ll i=n-1;i>0;i--) { if(sum>9)โฆ
def minimum_digit(numDigits, sumDigits):
# Write your code here
if numDigits == 1 and sumDigits == 0:
return -1
# Start generating numbers from the smallest numDigits number
for num in range(10(numDigits - 1), 10numDigits):
digits = list(map(int, str(num)))
digit_sum = sum(digits)
digit_product = 1
for digit in digits:
digit_product *= digit
if digit_sum == sumDigits and digit_product == 0:
return num
# If no number satisfies the conditions
return -1
Digit sum zero โ
# Write your code here
if numDigits == 1 and sumDigits == 0:
return -1
# Start generating numbers from the smallest numDigits number
for num in range(10(numDigits - 1), 10numDigits):
digits = list(map(int, str(num)))
digit_sum = sum(digits)
digit_product = 1
for digit in digits:
digit_product *= digit
if digit_sum == sumDigits and digit_product == 0:
return num
# If no number satisfies the conditions
return -1
Digit sum zero โ
#include <iostream>
#include <vector>
#include <map>
using namespace std;
void findPerm(vector<int>& nums) {
int N = nums.size();
map<int, int> hashmap;
for (int num : nums) {
if (num >= 1 && num <= N) {
hashmap[num]++;
} else {
hashmap[num] = 1e9;
}
}
vector<int> missing;
for (int num = N; num >= 1; num--) {
if (!hashmap.count(num)) {
missing.push_back(num);
}
}
for (int& num : nums) {
if(missing.size()==0) break;
if (--hashmap[num] > 0) {
num = missing.back();
missing.pop_back();
}
hashmap[num]--;
}
}
DE Shaw โ
#include <vector>
#include <map>
using namespace std;
void findPerm(vector<int>& nums) {
int N = nums.size();
map<int, int> hashmap;
for (int num : nums) {
if (num >= 1 && num <= N) {
hashmap[num]++;
} else {
hashmap[num] = 1e9;
}
}
vector<int> missing;
for (int num = N; num >= 1; num--) {
if (!hashmap.count(num)) {
missing.push_back(num);
}
}
for (int& num : nums) {
if(missing.size()==0) break;
if (--hashmap[num] > 0) {
num = missing.back();
missing.pop_back();
}
hashmap[num]--;
}
}
DE Shaw โ
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int minimizeMismatchScore(string& s1, string& s2, int x, int y) {
int m = s1.size();
int n = s2.size();
vector<vector<int>> dp(m + 1, vector<int>(n + 1, 0));
for (int i = 1; i <= m; ++i) {
dp[i][0] = i * x;
}
for (int j = 1; j <= n; ++j) {
dp[0][j] = j * x;
}
for (int i = 1; i <= m; ++i) {
for (int j = 1; j <= n; ++j) {
if (s1[i - 1] == s2[j - 1]) {
dp[i][j] = dp[i - 1][j - 1];
} else {
dp[i][j] = min({ dp[i - 1][j] + x, dp[i][j - 1] + x, dp[i - 1][j - 1] + y });
}
}
}
return dp[m][n];
}
DE Shaw โ
#include <vector>
#include <algorithm>
using namespace std;
int minimizeMismatchScore(string& s1, string& s2, int x, int y) {
int m = s1.size();
int n = s2.size();
vector<vector<int>> dp(m + 1, vector<int>(n + 1, 0));
for (int i = 1; i <= m; ++i) {
dp[i][0] = i * x;
}
for (int j = 1; j <= n; ++j) {
dp[0][j] = j * x;
}
for (int i = 1; i <= m; ++i) {
for (int j = 1; j <= n; ++j) {
if (s1[i - 1] == s2[j - 1]) {
dp[i][j] = dp[i - 1][j - 1];
} else {
dp[i][j] = min({ dp[i - 1][j] + x, dp[i][j - 1] + x, dp[i - 1][j - 1] + y });
}
}
}
return dp[m][n];
}
DE Shaw โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
public static int minsteps(List<Integer> cityMap, int rows, int cols, int maxsteps) {
int[][] grid = new int[rows][cols];
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
grid[i][j] = cityMap.get(i * cols + j);
}
}
int[][] dp = new int[rows][cols];
for (int[] row : dp) {
Arrays.fill(row, Integer.MAX_VALUE);
}
dp[0][0] = 0;
int[] dx = {-1, 1, 0, 0};
int[] dy = {0, 0, -1, 1};
for (int steps = 0; steps <= maxsteps; steps++) {
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
if (dp[i][j] == Integer.MAX_VALUE) continue;
for (int k = 0; k < 4; k++) {
int ni = i + dx[k];
int nj = j + dy[k];
if (ni >= 0 && ni < rows && nj >= 0 && nj < cols && grid[ni][nj] == 0) {
dp[ni][nj] = Math.min(dp[ni][nj], dp[i][j] + 1);
}
}
}
}
}
if (dp[rows - 1][cols - 1] == Integer.MAX_VALUE) {
return -1;
} else {
return dp[rows - 1][cols - 1];
}
}
Urban Navigator โ
int[][] grid = new int[rows][cols];
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
grid[i][j] = cityMap.get(i * cols + j);
}
}
int[][] dp = new int[rows][cols];
for (int[] row : dp) {
Arrays.fill(row, Integer.MAX_VALUE);
}
dp[0][0] = 0;
int[] dx = {-1, 1, 0, 0};
int[] dy = {0, 0, -1, 1};
for (int steps = 0; steps <= maxsteps; steps++) {
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
if (dp[i][j] == Integer.MAX_VALUE) continue;
for (int k = 0; k < 4; k++) {
int ni = i + dx[k];
int nj = j + dy[k];
if (ni >= 0 && ni < rows && nj >= 0 && nj < cols && grid[ni][nj] == 0) {
dp[ni][nj] = Math.min(dp[ni][nj], dp[i][j] + 1);
}
}
}
}
}
if (dp[rows - 1][cols - 1] == Integer.MAX_VALUE) {
return -1;
} else {
return dp[rows - 1][cols - 1];
}
}
Urban Navigator โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Synchrony Walkin | Apprentice @ Hyderabad
Qualification: 10+2, Any Graduation
Experience: 0 to 1 year
Stipend: Rs. 29,000/- month + 4000 (Night Shift Allowance) + 1100 (Broadband Reimbursement)
Walkin Date: 24th June 2024
Walkin Time: 11.00 AM to 2.00 PM
More Details:
https://www.naukri.com/job-listings-walk-in-drive-for-apprentice-program-representative-synchrony-hyderabad-0-to-1-years-140624006156?
Qualification: 10+2, Any Graduation
Experience: 0 to 1 year
Stipend: Rs. 29,000/- month + 4000 (Night Shift Allowance) + 1100 (Broadband Reimbursement)
Walkin Date: 24th June 2024
Walkin Time: 11.00 AM to 2.00 PM
More Details:
https://www.naukri.com/job-listings-walk-in-drive-for-apprentice-program-representative-synchrony-hyderabad-0-to-1-years-140624006156?
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Qualification: Any Graduation, MBA
Batch: 2021, 2022, 2023, 2024
Walkin Date: 18th to 21st June 2024
Walkin Time: 10.30 AM to 12.30 PM
More Details:
https://www.naukri.com/job-listings-wipro-walk-in-drive-for-freshers-gachibowli-campus-wipro-hyderabad-0-to-0-years-100624002271
Batch: 2021, 2022, 2023, 2024
Walkin Date: 18th to 21st June 2024
Walkin Time: 10.30 AM to 12.30 PM
More Details:
https://www.naukri.com/job-listings-wipro-walk-in-drive-for-freshers-gachibowli-campus-wipro-hyderabad-0-to-0-years-100624002271
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Scaler
๐ Job Title: Technical Content Writer
โ๐ป YOE: 2024 grads or later
โก๏ธ Apply: https://interviewbit.darwinbox.in/ms/candidate/careers/a6671616ab9376
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Technical Content Writer
โ๐ป YOE: 2024 grads or later
โก๏ธ Apply: https://interviewbit.darwinbox.in/ms/candidate/careers/a6671616ab9376
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Intervue.io is hiring SDE Intern
This company was featured in Shark Tank S3. ๐
For 2023, 2024, 2025 grads
Check out this job at Intervue.io: https://www.linkedin.com/jobs/view/3952536498
This company was featured in Shark Tank S3. ๐
For 2023, 2024, 2025 grads
Check out this job at Intervue.io: https://www.linkedin.com/jobs/view/3952536498
Linkedin
Intervue.io hiring SDE Intern in Bengaluru, Karnataka, India | LinkedIn
Posted 8:11:19 AM. About:Intervue is on a mission to streamline the entire interviewing process from screening toโฆSee this and similar jobs on LinkedIn.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Urban Company is hiring SDE-1
For 2024, 2023, 2022 grads
Expected CTC - 25LPA
https://careers.urbancompany.com/jobDetail?id=9af0656f-fad3-421a-802e-caf1591f8a4f
For 2024, 2023, 2022 grads
Expected CTC - 25LPA
https://careers.urbancompany.com/jobDetail?id=9af0656f-fad3-421a-802e-caf1591f8a4f
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Infosys Off Campus Hiring Fresher for DSE. And SP
Location : Across India
Qualification : BE/B.Tech/M.E/M.Tech/MCA/MSC
Work Experience : Fresher
https://surveys.infosysapps.com/r/a/Infosys_SPhiring_24BATCH
Location : Across India
Qualification : BE/B.Tech/M.E/M.Tech/MCA/MSC
Work Experience : Fresher
https://surveys.infosysapps.com/r/a/Infosys_SPhiring_24BATCH
Infosysapps
Infosys | Surveys
Create Surveys. Collect feedback through a computer assisted, Mobile friendly method. Design Surveys, Send Request , Analyze response and more ...
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Swiggy - Associate Software Development Engineer in Test
https://docs.google.com/forms/d/1LmNVDVxBGAm9Dxx5PckQoPACj4Px8o3tKKGR_zfW5n8/viewform?edit_requested=true
https://docs.google.com/forms/d/1LmNVDVxBGAm9Dxx5PckQoPACj4Px8o3tKKGR_zfW5n8/viewform?edit_requested=true
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
United's Digital Technology is hiring for Associate Engineer
Expected Salary: 5-8 LPA
Apply here:
https://careers.united.com/us/en/job/UAIUADUSGGN00001393EXTERNALENUSTALEO/Associate-Engineer
Expected Salary: 5-8 LPA
Apply here:
https://careers.united.com/us/en/job/UAIUADUSGGN00001393EXTERNALENUSTALEO/Associate-Engineer
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Accenture Hack Diva
https://indiacampus.accenture.com/events/hackdiva/
https://indiacampus.accenture.com/events/hackdiva/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Urban
๐ Job Title: SDE - 1
โ๐ป YOE: 0-2 years
โก๏ธ Apply: https://careers.urbancompany.com/jobDetail?id=9af0656f-fad3-421a-802e-caf1591f8a4f
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: SDE - 1
โ๐ป YOE: 0-2 years
โก๏ธ Apply: https://careers.urbancompany.com/jobDetail?id=9af0656f-fad3-421a-802e-caf1591f8a4f
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Empower is hiring for Assoc Engineer Software (0-1 years)
Expected Salary: 5-8 LPA
Apply here:
https://jobs.empower.com/job/-/-/42743/66495432032
Expected Salary: 5-8 LPA
Apply here:
https://jobs.empower.com/job/-/-/42743/66495432032
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Opening for Analyst at WIPRO Gurgaon.
Candidates with an experience range of 0 - 1 yr. Only, comfortable with US shifts, can send their CV's to shubhangi.mishra@wipro.com with the below details.
Role- Analyst
Should be flexible working in Shifts.
Experience- 0 yrs. to 1 yrs.
Qualification- MBA/M.com/ B.com/BBA.
Location- Gurgaon (Work From Office Only)
Looking for Immediate Joiners
Candidates with an experience range of 0 - 1 yr. Only, comfortable with US shifts, can send their CV's to shubhangi.mishra@wipro.com with the below details.
Role- Analyst
Should be flexible working in Shifts.
Experience- 0 yrs. to 1 yrs.
Qualification- MBA/M.com/ B.com/BBA.
Location- Gurgaon (Work From Office Only)
Looking for Immediate Joiners