allcoding1
27.7K subscribers
2.2K photos
2 videos
77 files
852 links
Download Telegram
Edifecs hiring for Associate Software Engineer

2024/2023/2022 passouts eligible

http://jobs.jobvite.com/edifecs/job/o0Z8sfwj?jvst=Job%2520Board&jvsd=LinkedIn
🎯Genpact recruitment

Qualification:- BE/B.Tech
Job role:- Management Trainee – Python Developer
Job:- bangalore

Apply:-
https://genpact.taleo.net/careersection/sgy_external_career_section/jobdetail.ftl?job=COR029019
🎯Capgemini Off Campus Hiring Fresher For Associate Software Engineer
Location : Chennai
Qualification : B.E/B.Tech/M.E/M.Tech/MCA/M.Sc
Work Experience : Fresher
CTC : 3 - 4 LPA

Apply Now:- https://www.capgemini.com/jobs/f73_35ABje7kHFfZEHHG/27065-en_US/
👍2
🎯Cognizant Hiring Fresher For Business Associate

Location: Bangalore / Gurgaon
Qualification:B.E/B.TECH/M.E/M.TECH
Work Experience: Fresher
Salary: Up To 7 LPA

Apply Now:-
https://careers.cognizant.com/global-en/jobs/00060163971/business-associate/?src=SNS-102?JB-11500
👍2
Zeotap is hiring for Software Engineering Intern

2025/2024/2023 passouts eligible

https://jobs.lever.co/zeotap/d9da141a-91f0-4713-9eb1-ee103e7bc1d6/
👍4
Company Name:- Salesforce

Profile:-  Software Engineer

Education:-  BE/ BTech in Computer Science, Information Technology and Circuit Branch

Experience:- Fresher ONLY

Salary:- up to 8 LPA

Location:- Hyderabad & Bangalore

Apply Here:- https://salesforce.wd12.myworkdayjobs.com/External_Career_Site/job/India---Hyderabad/Software-Engineering-AMTS_JR261253?source=LinkedIn_Jobs


Telegram:- @allcoding1
👍5
🎯Wipro WILP Hiring

YOP: 2023, 2024

Application Deadline :  30 Aug 2024 11:59 PM

Apply Now:
https://app.joinsuperset.com/join/#/signup/student/jobprofiles/c10ac320-3871-4fb2-9053-d8a58b52ea18
👍2
Cornerstone Off Campus Drive 2024 | Associate Software Engineer | 8-10 LPA

Job Role :Associate Software EngineerQualification :B.E/B.Tech/MCAExperience :Freshers
Package :8-10 LPA

Apply Now:-
https://cornerstone.csod.com/ux/ats/careersite/2/home/requisition/9705?c=cornerstone
👍3
🎯Mitsogo Hiring Software Test Engineer - QA:

Graduation Year: 2023 / 2024

Experience: Freshers

Eligibility: B.Tech/BE any Stream is eligible to apply.

Location: Kochi, Kerela

Apply Now:- https://www.mitsogo.com/careers/4069761008/
👍51
McAfee is hiring SDET

2021 grads eligible
Location : Remote

Apply now:-
https://careers.mcafee.com/global/en/job/MCAFGLOBALJR0031208ENGLOBALEXTERNAL/SDET-Remote?s=08
👍2🔥1
Qualcomm is hiring Machine Learning Engineer

2022, 2023, 2024 grads eligible

Apply Now :
https://careers.qualcomm.com/careers/job/446700214545
👍5
Mousar Electronics hiring for Web Developer l

10 - 20 LPA

2024/2023/2022/2021/2020
Passouts eligible

Apply Now :
https://phf.tbe.taleo.net/phf03/ats/careers/v2/viewRequisition?org=MOUSER&cws=40&rid=17859
👍3
Oracle is hiring for Technical Analyst

CTC : 7 - 10 LPA
Batch : 2024/2023/2022 passouts eligible

Apply now :
https://careers.oracle.com/jobs/#en/sites/jobsearch/job/241626/
👍1
👍2
Infosys exam Answer's
👍6
Q1: Two Square minimax

You are given a square grid A of size N x N.

Your want to choose two non-intersecting square sub-grids from the grid such that they have no common row or column The objective is to maximize the sum of beauties of both square sub-grids.

The beauty of a sub-grid is defined as the difference betwee the maximum value and the minimum value within that sub- grid.

tikqupta2s

Find the maximum possible sum of beauties for the sel two sub-grids.

Input Format

The next line contains an integer, N, denoting the number o columns in A.

Each line i of the N subsequent lines (where 0 ≤ i < N) com space separated integers each describing the row A[i].

Constraints

2 <= N <= 250

1 <= A[i][j] <= 10^5

Sample Test Cases

Case 1

Input:

2

23

23

Output:

0

Explanation:

Given N 2, A = [[2, 3], [2, 3]].

We take cell (1, 2) and cell (2, 1) and the answer will be 0

Public class solution {
Public static int get_ans(int N, List<List<Integer>> A}}
👍4
1Ans) java code

import java.util.ArrayList;
import java.util.List;

public class Solution {
public static int getAns(int N, List<List<Integer>> A) {
// This will store the maximum beauty sum of two non-intersecting squares
int maxSumOfBeauties = 0;

// Precompute the beauty of all sub-grids for quick lookup
int[][] beauty = new int[N][N];
for (int row = 0; row < N; row++) {
for (int col = 0; col < N; col++) {
// Calculate beauty for sub-grid starting at (row, col)
int minVal = Integer.MAX_VALUE;
int maxVal = Integer.MIN_VALUE;
for (int i = row; i < N; i++) {
for (int j = col; j < N; j++) {
minVal = Math.min(minVal, A.get(i).get(j));
maxVal = Math.max(maxVal, A.get(i).get(j));
beauty[i][j] = maxVal - minVal;
}
}
}
}

// Try all possible pairs of non-intersecting sub-grids
for (int r1 = 0; r1 < N; r1++) {
for (int c1 = 0; c1 < N; c1++) {
for (int r2 = 0; r2 < N; r2++) {
for (int c2 = 0; c2 < N; c2++) {
if (r1 != r2 && c1 != c2) {
// Ensure the sub-grids do not share any rows or columns
int beauty1 = beauty[r1][c1];
int beauty2 = beauty[r2][c2];
maxSumOfBeauties = Math.max(maxSumOfBeauties, beauty1 + beauty2);
}
}
}
}
}

return maxSumOfBeauties;
}

public static void main(String[] args) {
// Example usage:
List<List<Integer>> grid = new ArrayList<>();
grid.add(List.of(2, 3));
grid.add(List.of(2, 3));
int N = 2;
System.out.println(getAns(N, grid)); // Output should be 0
}
}
👍4