๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.52K subscribers
5.55K photos
3 videos
95 files
9.64K 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
๐Ÿš€ Unleash the Power of ChatGPT - FREE Course!๐Ÿ’ฌ
Ready to master the art of ChatGPT and revolutionize your communication skills?
๐Ÿ‘‰ Click here to get access - https://bit.ly/41UehCP


๐ŸŒ Join our exclusive FREE course, "ChatGPT for Beginners," on Great Learning Academy! ๐Ÿค–๐Ÿ“š

๐ŸŒŸ What Awaits You:
โœ… Dive into the fundamentals of ChatGPT
โœ… Hands-on learning with practical exercises
โœ… Unlock the potential of conversational AI

๐Ÿ”ฅ Seize this opportunity! Elevate your knowledge with ChatGPT. ๐Ÿš€ Enroll Now to embark on a journey of enhanced communication!

๐Ÿ“ฃ Share this with friends who are curious about AI and chatbots! ๐Ÿค–๐Ÿ’ก #ChatGPT #GreatLearningAcademy #FreeCourse

๐Ÿ‘‰ Enroll Now! https://bit.ly/41UehCP

๐Ÿ‘‰Great Learning Academy - Your Gateway to AI Excellence!
Walk-in Date: 11 January 2024

Interview Time:11:30 AM to 3:30 PM

Venue details:

HCL Tech
ETA- Techno Park,
Special Economic Zone 33 Rajiv Gandhi Salai,
Navallur,
Taluk,
Tamil Nadu 600130

Please contact: โ€“ HR Nikitha
#JobOpenings ๐Ÿšจ

Company โ€“ Lumbini Elite Solutions & Services
Role โ€“ Data Analyst
Exp. โ€“ 0-2 yrs
Apply Here โ€“ https://www.naukri.com/job-listings-trained-data-analyst-walk-in-drive-bengaluru-location-lumbini-elite-solutions-services-bengaluru-0-to-2-years-110124004950?src=sortby&sid=17049530362665781_1&xp=2&px=1&nignbevent_src=jobsearchDeskGNB

Company โ€“ BlackRock
Role โ€“ Data Engineer
Exp. โ€“ Fresher
Apply Here โ€“ https://careers.blackrock.com/job/19693196/data-engineer-analyst-gurgaon-in/?source=Indeed

Company โ€“ PineBridge Investments
Role โ€“ Data Scientist
Exp. โ€“ 0-7 yrs
Apply Here โ€“ https://www.linkedin.com/jobs/view/3802755552


Company โ€“ Zupee
Role โ€“ Data Engineer Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://www.naukri.com/job-listings-data-engineer-intern-zupee-gurugram-haryana-0-to-1-years-100124007387?src=jobsearchDesk&sid=17049530362665781_2&xp=2&px=1&nignbevent_src=jobsearchDeskGNB

Company โ€“ Digite Infotech Private Limited
Role โ€“ Data Analytics Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://internshala.com/internship/detail/data-analytics-internship-in-bangalore-at-digite-infotech-private-limited1704869020?utm_source=cp_link&referral=web_share

Company โ€“ MentorBoxx
Role โ€“ Data Science Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://internshala.com/internship/detail/data-science-work-from-home-job-internship-at-mentorboxx1704893923?utm_source=cp_link&referral=web_share

Company โ€“ Analytics Jobs
Role โ€“ Machine Learning Engineering
Exp. โ€“ Fresher
Apply Here โ€“ https://internshala.com/internship/detail/machine-learning-engineering-work-from-home-job-internship-at-analytics-jobs1704947308?utm_source=cp_link&referral=web_share

Company โ€“ AegisCovenant
Role โ€“ Data Analytics Intern
Exp. โ€“ Fresher
Apply Here โ€“ https://internshala.com/internship/detail/data-analytics-internship-in-gurgaon-at-aegiscovenant1704872042?utm_source=cp_link&referral=web_share
import java.util.*;
public class Main {

    public static int minMoves(int input1, int[] input2) {
        int[] dp = new int[input1];
        Arrays.fill(dp, Integer.MAX_VALUE);
        dp[0] = 0;

        for (int i = 1; i < input1; i++) {
            for (int j = 0; j < i; j++) {
                if (input2[i] == input2[j]) {
                    dp[i] = Math.min(dp[i], dp[j] + 1);
                }
            }
            dp[i] = Math.min(dp[i], dp[i - 1] + 1);
        }

        return dp[input1 - 1];
    }

Golden Brick Road โœ…
*We are hiring!*

Inviting *B.Tech/B.E. 2024 graduates* (Chemical, Electrical, Mechanical & Instrumentation) from AICTE-approved institutes to apply for *RIL's Graduate Engineer Trainee (GET) 2024 program.*

Know someone who might be interested? Encourage them to apply today! *Click here:* https://bit.ly/RILGET2024

Write to campus.relations@ril.com in case of any queries.

*Last date:* Jan 19, 2024

*Warm Regards*
*Team Employee Communications & Engagement*