Pavan Varmapavan-varma.hashnode.dev·Dec 3, 2024Java 101: Understanding Variables, Data Types, and Input/OutputIntroduction: Java is one of the most popular and versatile programming languages in the world, and it is used in everything from web applications to mobile apps. Understanding the basics is essential if you're starting your journey into Java. In thi...DSA
Pratham Saxenaprathamsaxena.hashnode.dev·Nov 28, 2024GeeksforGeeks Interview Experience For Technical Content Engineer InternIn this blog, I’ll share my interview experience for the Technical Content Engineer Intern role at GeeksforGeeks (GFG). It was a well-structured process consisting of multiple rounds, each offering its own challenges and insights. Here's a step-by-st...engineering
Akshima Sharmakeycomputereducation.hashnode.dev·Jul 29, 2024Row with max 1s — POTDRow with max 1s Given a boolean 2D array, consisting of only 1’s and 0’s, where each row is sorted. Return the 0-based index of the first row that has the most number of 1s. If no such row exists, return -1. Examples: Input: arr[][] = [[0, 1, 1, 1], ...Practice Questionsalgorithms
Mahek Gormahekgor.hashnode.dev·Jun 21, 2024GFG POTD - 21st June 2024 SolutionProblem Statement: You are given a string str containing two fractions a/b and c/d, compare them and return the greater. If they are equal, then return "equal". Note: The string str contains "a/b, c/d"(fractions are separated by comma(,) & space( ))....cpp
Akshima Sharmakeycomputereducation.hashnode.dev·Jun 12, 2024Array Questions Part — 2(CPP)At least two greater elements At least two greater elements | Practice | GeeksforGeeks Given an array of N distinct elements, the task is to find all elements in array except two greatest elements in sorted… Given an array of N distinct elements, the...Basic Array Programs Solutions - Source Geeksforgeeks (using CPP)array
Riddhi Kakkadriddhikakkad.hashnode.dev·Jun 12, 2024💡Top 15 Websites Every Computer Engineer Should BookmarkAs a computer engineer, staying current with industry trends, continuously honing your skills, and networking with fellow professionals are essential aspects of your career development. To help you navigate through this dynamic field, here is a curat...10 likes·45 readsStack Overflow
Akshima Sharmakeycomputereducation.hashnode.dev·May 27, 2024Array Questions - Part 1Value equal to index value Given an array Arr of N positive integers. Your task is to find the elements whose value is equal to that of its index value ( Consider 1-based indexing ). Note: There can be more than one element in the array which have th...Basic Array Programs Solutions - Source Geeksforgeeks (using CPP)C++
Bama Charan Chhandogibamacharan.hashnode.dev·Apr 9, 2024Introducing react-gfg: Fetch Your Geek for Geeks Profile Details with EaseIntroduction: As developers, we want to showcase our coding skills on our portfolio or other websites. There are several well-known online coding platforms like LeetCode and Geek for Geeks. Geek for Geeks is a popular platform where developers practi...68 readsgfg-components
Akshima Sharmakeycomputereducation.hashnode.dev·Jan 17, 2024Array Questions(Program)Find minimum and maximum element in an array Given an array A of size N of integers. Your task is to find the minimum and maximum elements in the array. pair<long long, long long> getMinMax(long long arr[], int n) { pair <long, long> p1; p1.f...Basic Array Programs Solutions - Source Geeksforgeeks (using CPP)C++
Akshima Sharmakeycomputereducation.hashnode.dev·Jan 16, 2024Array Questions(Program)Basic Level Questions Binary Search Given a sorted array of size N and an integer K, find the position(0-based indexing) at which K is present in the array using binary search. Input: N = 5 arr[] = {1 2 3 4 5} K = 4 Output: 3 Explanation: 4 appears ...40 readsBasic Array Programs Solutions - Source Geeksforgeeks (using CPP)array