Large functional matrix(C++)
Raukten โ
Raukten โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
DecisivEdge is hiring
Role: Software Developer
Batch eligible: 2021 and 2022 passouts only.
โผ๏ธ CTC: 3-3.5 LPA โผ๏ธ
Link: https://www.linkedin.com/jobs/view/3169855889
P.S. If you don't have any other job in hand then only go for this.
Role: Software Developer
Batch eligible: 2021 and 2022 passouts only.
โผ๏ธ CTC: 3-3.5 LPA โผ๏ธ
Link: https://www.linkedin.com/jobs/view/3169855889
P.S. If you don't have any other job in hand then only go for this.
Linkedin
DecisivEdge, LLC hiring Trainee โ Software Developer in Pune, Maharashtra, India | LinkedIn
Posted 7:53:17 AM. Trainee โ Software Developer
People Management: NoTravel Required: MinimalLocation: MagarpattaโฆSee this and similar jobs on LinkedIn.
People Management: NoTravel Required: MinimalLocation: MagarpattaโฆSee this and similar jobs on LinkedIn.
๐1
โ๏ธZoho Off Campus Hiringโ๏ธ
๐ Batch - 2017 to 2022
๐ Link - careers.zohocorp.com/forms/fcc89b5ebd373d598e0224d10f2199d1d084214bfdca8ff29dc971b9f11a3fe3
๐ Batch - 2017 to 2022
๐ Link - careers.zohocorp.com/forms/fcc89b5ebd373d598e0224d10f2199d1d084214bfdca8ff29dc971b9f11a3fe3
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
match.myanatomy.in
MATCH (MyAnatomy Talent Convergence Horizon)
A Campus Recruitment Enabler, converging the Corporates, Candidates and Colleges in one single platform
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
BT is hiring
Role: Apprentices
Batch eligible: 2020, 2021 and 2022 passouts
Link: https://bt.taleo.net/careersection/external/jobdetail.ftl?job=178920&lang=en#.YtELKeZYHhs.linkedin
P.S. Role is not that good, if you don't have any job in hand then you can probably try, else ignore this.
Role: Apprentices
Batch eligible: 2020, 2021 and 2022 passouts
Link: https://bt.taleo.net/careersection/external/jobdetail.ftl?job=178920&lang=en#.YtELKeZYHhs.linkedin
P.S. Role is not that good, if you don't have any job in hand then you can probably try, else ignore this.
bt.taleo.net
BTPLC.com home page
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Google
Role: Software Engineering Intern, Winter
Batch eligible: Only 2023 batch eligible
Apply Link:
https://bit.ly/3o8q39R
P.S. Try with referralโ
Role: Software Engineering Intern, Winter
Batch eligible: Only 2023 batch eligible
Apply Link:
https://bit.ly/3o8q39R
P.S. Try with referralโ
Google
Software Engineering Intern, Winter 2023 - Google Careers
Apply for Software Engineering Intern, Winter 2023 via Google Careers. Read about the role and find out if it's right for you.
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Esko is hiring
Role: QA Engineer Trainee
Batch eligible: 2021 and 2022 passouts
Link:
https://jobs.danaher.com/global/en/job/DANAGLOBALR1214093EXTERNALENGLOBAL/QA-Engineer-Trainee?utm_source=linkedin&utm_medium=phenom-feeds
Role: QA Engineer Trainee
Batch eligible: 2021 and 2022 passouts
Link:
https://jobs.danaher.com/global/en/job/DANAGLOBALR1214093EXTERNALENGLOBAL/QA-Engineer-Trainee?utm_source=linkedin&utm_medium=phenom-feeds
โ๏ธMicrosoft Edge Hiringโ๏ธ
๐ Batch - 2023
careers.microsoft.com/students/us/en/job/1369987/Software-Engineering-Full-Time-Opportunity-for-University-Graduates
๐ Batch - 2023
careers.microsoft.com/students/us/en/job/1369987/Software-Engineering-Full-Time-Opportunity-for-University-Graduates
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Accelya Group is hiring
Role: Software Developer
Batch eligible: 2021 and 2022 passouts
Apply link: https://bit.ly/3Pj80tk
Role: Software Developer
Batch eligible: 2021 and 2022 passouts
Apply link: https://bit.ly/3Pj80tk
Accelya Candidate External Site
Engineer I - Software development
The C++ Developer will be part of the FLX Shop & Price development team, maintaining our existing code base and developing new features.
Anyone Living in Noida near sector 61/62 or indirapuram .... Please ping me @SuperExamsBot
๐3
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซAnyone Living in Noida near sector 61/62 or indirapuram .... Please ping me @SuperExamsBotยป
class Solution:
def maxAreaOfIsland(self, grid: List[List[int]]) -> int:
max_area = 0
for r in range(len(grid)):
for c in range(len(grid[r])):
if grid[r][c] == 1:
max_area = max(max_area, self.explore(grid, r, c))
return max_area
def explore(self, grid, r, c):
if (r < 0 or r >= len(grid)) or (c < 0 or c >= len(grid[r])):
return 0
if grid[r][c] == 0:
return 0
# mark as visited
grid[r][c] = 0
return 1 + self.explore(grid, r - 1, c) + self.explore(grid, r, c - 1) + self.explore(grid, r + 1, c) + self.explore(grid, r, c + 1)
def maxAreaOfIsland(self, grid: List[List[int]]) -> int:
max_area = 0
for r in range(len(grid)):
for c in range(len(grid[r])):
if grid[r][c] == 1:
max_area = max(max_area, self.explore(grid, r, c))
return max_area
def explore(self, grid, r, c):
if (r < 0 or r >= len(grid)) or (c < 0 or c >= len(grid[r])):
return 0
if grid[r][c] == 0:
return 0
# mark as visited
grid[r][c] = 0
return 1 + self.explore(grid, r - 1, c) + self.explore(grid, r, c - 1) + self.explore(grid, r + 1, c) + self.explore(grid, r, c + 1)
โ๏ธNewgen Hiringโ๏ธ
๐ฐ CTC - 4.8LPA
firstnaukri.com/careers/customised/landingpage/newgen/09062022/software-engineer.html
๐ฐ CTC - 4.8LPA
firstnaukri.com/careers/customised/landingpage/newgen/09062022/software-engineer.html
Anyone Living in Noida near sector 61/62 or indirapuram .... Please ping me @SuperExamsBot
๐1
String Concatenation C++โ