๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.6K subscribers
5.59K photos
3 videos
95 files
10.1K 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
Gartner Digital Markets, are hiring for freshers

1. Marketing Associate
Experience: 0-2 Years
Required: Good understanding of Email Marketing, Social Media Marketing and Content Promotion.

2. Product Catalog Specialist
Experience: 0-2 Years
Required: Experience in technical content writing, research, data collection and client management.

3. Sales Quality Assurance Coordinator
Experience: 0-2 Years
Required: Experience in Call quality check, audio reviews, sales lead reviewing and lead scoring

4. Lead Qualifying Specialist
Experience: 0-2 Years
Required: Experience in lead generation, lead enrichment or scoring.

Location: Gurgaon

If you or anyone in your circle is looking for a change, please share your resume at medha.wadhwa@gartner.com
int n=sc.nextInt(),i;
            int a[]=new int[n];
            for(i=0;i<n;i++) a[i]=sc.nextInt();
            int dp[]=new int[n];
        dp[0]=a[0];
        if(n>1)
            dp[1]=Math.max(a[0],a[1]);
        if(n>2)
            dp[2]=Math.max(a[0]+a[2],a[1]);
            for( i=3;i<n;i++)
                dp[i]=Math.max(a[i]+dp[i-2],dp[i-1]);
        System.out.println(dp[n-1]);

Special Sum โœ…
Intuit