๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.63K subscribers
5.61K photos
3 videos
95 files
10.6K links
๐ŸšฉMain Group - @SuperExams
๐Ÿ“Job Updates - @FresherEarth

๐Ÿ”ฐAuthentic Coding Solutions(with Outputs)
โš ๏ธDaily Job Updates
โš ๏ธHackathon Updates & Solutions

Buy ads: https://telega.io/c/cs_algo
Download Telegram
Accenture 4PM Slot :

English ability

1)q) my frd
A

2)q) the plane
Over
D

3)q) she lay down
Sleep
B

4)q) if you
Were being
A

5)q) find a door
Found
B

6)q) no sooner
Rigining
D

7)q) India
A wealth off
B

8)every year
An acre
B

9) q) paradox
Contradiction
A

10)q) oblivion
Alart

11)q)treason
Fidelity

12)q) the teacher
Consen
D

13)the reformer
Cbad

14)q) many people
Will
A

15)q) pariris
To jusfiy
B

16)q) assumption
Elaborate
A

17)q) one of the claims
Lavish
D
๐Ÿ‘2
โœ…โœ…โœ…#HackerRank Last and Second-Last - Python HackerRank Solutions

def lastLetters(word):
return word[-1]+" "+word[-2]

word="APPLE"
print(lastLetters(word))
โœ…โœ…โœ…#HackerRank Product of the Maximum and Minimum in a Dataset - Java HackerRank Solution

public static List<Long> maxMin(List<String> operations, List<Integer> x) {
List<Long> productArray = new ArrayList<Long>();
List<Long> a=new ArrayList<Long>();
int opsize=operations.size();
for(int y=0;y<opsize;y++)
{
if(operations.get(y).equals("push"))
{
a.add((long)x.get(y));
Collections.sort(a);
productArray.add(a.get(0)*a.get(a.size()-1));
}
else
{
a.remove((long)x.get(y));
Collections.sort(a);
productArray.add(a.get(0)*a.get(a.size()-1));
}
}
return productArray;
}
โœ…โœ…โœ…#HackerRank Reverse Array Queries - Python HackerRank Solutions

def performOperations(arr, operations):
for i in operations:
arr[i[0]:i[1]+1]=reversed(arr[i[0]:i[1]+1])
return arr
Greetings from Pentagon Space Pvt Ltd Bangalore
Hope You're Doing Great.

We have an Immediate Requirement for Technical Trainer @ Pentagon Space.

Job Description
Designation : TECHNICAL TRAINER
Requirement : Immediate
Skill Required : Excellent verbal and written communication skills
Advanced technical skills in e-learning and technology delivery
Strong interpersonal skills and the ability to work well with others
Specialized knowledge of specific industries
Teaching ability and a calm, caring mentor
Must have a strong technical background and experience in a technical training role
Year of Passout : 2018 / 2019 / 2020 / 2021
Salary package : 3 LPA - 6LPA
No of Positions : Multiple
Work Location : Vijaynagar
Academic Qualification : BE, BTech (Preferable candidates from Mechanical / CSE / ISE / IT / ECE / EEE) MTech, BCA, MCA
Eligibility : No % criteria for 10th & 12th, 70% above in UG/PG
Bond : NO

Note : Candidates should get prepared on any one Technical concept to give the Demo session for 10minutes.
Interested candidates who are residing in Bangalore can Walk-in to the below mentioned address with updated resume.

Interview Date: 04-04-2022 @10:00AM
Venue : Pentagon Space Pvt Ltd
Plot No.765,8th Cross Road, M.R.C.R Extension, Govindaraja Nagar, Bangalore-560040 (Near Hosahalli metro station)

Candidates should register through the link given below on or before 03rd April 2022 within 4 pm to confirm their schedule.

Registration link: https://bit.ly/3DlhX4g
int ReplaceDiagonals(int mat,int m)
{
int i,j;
for(i=0;i<m;i++)
{
for (j=i;j==i;j++)
{
if(i==0)
{
mat[i][j]=mat[i][j+1]+mat[i+1][j]+mat[i+1][j+1];
}
else if(i==m-1)
{
mat[i][j]=mat[i-1][j-1]+mat[i-1][j]+mat[i][j-1];
}
else
{
mat[i][j]=mat[i-1][j-1] + mat[i-1][j] + mat[i-1][j+1]+ mat[i][j-1] + mat[i][j+1]+ mat[i+1][j-1] + mat[i+1][j] + mat[i+1][j+1] ;
}
}
}
return mat;
}

Replace diagonal(C)โœ…
Accenture