Coding Interview Resources
50.3K subscribers
692 photos
7 files
399 links
This channel contains the free resources and solution of coding problems which are usually asked in the interviews.

Managed by: @love_data
Download Telegram
Important Interview Questions with Answers ๐Ÿ’ปโœ…
โค2๐Ÿ‘2
โ€ผ๏ธ USEFUL SITES TO MAKE YOUR WORK EASIER โ€ผ๏ธ

1. Media.io โ€“ Online Free File Converter, Editor, Compressor

2. https://alternativeto.net/ - Lacks of softwares

3. https://geektyper.com/mobile/ - Pretend to be a hacker

4. http://Leetcode.com/ - Practice your coding skills

5. https://www.privacytools.io/ - Amazing site for privacy tools

6. http://Rainymood.com/ - Amazing site for Rainy & Thunderstorm sounds (to listen while sleeping)

๐Ÿ””Unmute Notification & Share Channel For More Content โœ…
๐Ÿ‘5โค2
Data Structure Types
๐Ÿ‘5โค4
Various types of test used in statistics for data science

T-test: used to test whether the means of two groups are significantly different from each other.

ANOVA: used to test whether the means of three or more groups are significantly different from each other.

Chi-squared test: used to test whether two categorical variables are independent or associated with each other.

Pearson correlation test: used to test whether there is a significant linear relationship between two continuous variables.

Wilcoxon signed-rank test: used to test whether the median of two related samples is significantly different from each other.

Mann-Whitney U test: used to test whether the median of two independent samples is significantly different from each other.

Kruskal-Wallis test: used to test whether the medians of three or more independent samples are significantly different from each other.

Friedman test: used to test whether the medians of three or more related samples are significantly different from each other.
๐Ÿ‘4โค2
Type of problem, while solving DSA problem in Array

โ—
There are many types of problems that can be solved using arrays and different techniques in Data Structures and Algorithms. Here are some common problem types and techniques that you might encounter:

๐Ÿ. ๐’๐ฅ๐ข๐๐ข๐ง๐  ๐ฐ๐ข๐ง๐๐จ๐ฐ ๐ฉ๐ซ๐จ๐›๐ฅ๐ž๐ฆ๐ฌ: In these problems, you are given an array and a window size, and you have to find a subarray of that size that satisfies certain conditions. You can use a sliding window technique to efficiently search through the array by maintaining a current window of fixed size and updating it as you move forward.

๐Ÿ. ๐“๐ฐ๐จ ๐ฉ๐จ๐ข๐ง๐ญ๐ž๐ซ ๐ฉ๐ซ๐จ๐›๐ฅ๐ž๐ฆ๐ฌ: In these problems, you use two pointers to traverse the array from both ends and find a certain pattern or condition. For example, you can use two pointers to find a pair of elements that sum up to a target value, or to reverse an array.

๐Ÿ‘. ๐’๐จ๐ซ๐ญ๐ข๐ง๐  ๐ฉ๐ซ๐จ๐›๐ฅ๐ž๐ฆ๐ฌ: In these problems, you are asked to sort an array in a certain way, such as in ascending or descending order, or according to certain criteria such as frequency or value. You can use sorting algorithms such as merge sort or quick sort to efficiently sort the array.


๐Ÿ’. ๐’๐ž๐š๐ซ๐œ๐ก๐ข๐ง๐  ๐ฉ๐ซ๐จ๐›๐ฅ๐ž๐ฆ๐ฌ: In these problems, you are asked to find a specific element in the array or to search for a certain pattern. You can use searching algorithms such as binary search or linear search to efficiently search through the array.

๐Ÿ“. ๐’๐ฎ๐›๐š๐ซ๐ซ๐š๐ฒ ๐ฉ๐ซ๐จ๐›๐ฅ๐ž๐ฆ๐ฌ: In these problems, you are asked to find a contiguous subarray that satisfies certain conditions. You can use techniques such as prefix sum or Kadane's algorithm to efficiently find the subarray with the maximum sum.


๐Ÿ”. ๐‚๐จ๐ฎ๐ง๐ญ๐ข๐ง๐  ๐ฉ๐ซ๐จ๐›๐ฅ๐ž๐ฆ๐ฌ: In these problems, you are asked to count the occurrences of certain elements or to count the number of subarrays or subsequences that satisfy certain conditions. You can use techniques such as hashing or dynamic programming to efficiently count the occurrences or number of subarrays.
๐Ÿ‘11โค3
Chatgpt prompt
โค12๐Ÿ‘3
๐Ÿ‘2โค1
๐Ÿ‘7โค2๐Ÿ‘1
Most Asked Interview Questions with Answers ๐Ÿ’ปโœ…
โค8๐Ÿ‘4
Sorting Algorithms
๐Ÿ‘7โค1