You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,38 +8,38 @@ If you are preparing for coding round for interviews,then this repo with help yo
8
8
To make your preparation easy and effective, we have also shot the concept lectures for each program. Watch them to get the grip on core idea of implementation.<br>
9
9
10
10
If you are falling short of time, then go through the important programs which are marked as :snowflake:<br>
11
-
ALL THE BEST FOR YOUR INTERVIEW<br>
11
+
> ALL THE BEST FOR YOUR INTERVIEW
12
12
13
13
Video Lectures : https://packetprep.com/course/coding-for-interviews
14
14
15
15
Basic Programs
16
16
--------
17
17
1.[Program to check if the given number is even or odd](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/1_CheckEvenOdd.c)
18
-
2.[Program to check if the given number is a Prime number :star:](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/2_CheckPrime.c)
19
-
3.[Program to check if the given number is Palindrome :star:](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/3_CheckPalindrome.c)
18
+
2.[Program to check if the given number is a Prime number :snowflake:](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/2_CheckPrime.c)
19
+
3.[Program to check if the given number is Palindrome :snowflake:](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/3_CheckPalindrome.c)
20
20
4.[Program to check if the given number is Perfect number](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/4_CheckPerfect.c)
21
21
5.[Program to check if the given number is Armstrong number](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/5_CheckArmstrong.c)
22
22
6.[Find the factorial of a number](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/6_Factorial.c)
23
23
7.[Program to check if the given number is Strong number](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/7_CheckStrong.c)
24
24
8.[Program to count the digits of a number](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/8_CountDigits.c)
25
25
9.[Program to swap two numbers (All methods)](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/9_SwapNumbers.c)
26
-
10.[Program to print Fibonacci series :star:](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/9_SwapNumbers.c)
26
+
10.[Program to print Fibonacci series :snowflake:](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/9_SwapNumbers.c)
27
27
11.[Program to print Hello World without semicolon](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/11_HelloWorldNoSemiColon.c)
28
28
12.[Find the largest of two numbers without conditional statement](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/12_LagrestNumWithoutConditional.c)
29
29
13.[Program to find the area of a Triangle when sides are given](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/13_AreaOfTriangle.c)
30
30
14.[Program to find the volume of a Sphere when radius is given](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/14_VolumeOfSphere.c)
31
31
15.[Program to check if the year is a Leap year](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/15_LeapYear.c)
32
32
16.[Program to convert Binary to Decimal and viceversa](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/16_DecimalBinaryConverter.c)
33
33
17.[Program to convert Binary to Octal ](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/17_BinaryOctalConverter.c)
34
-
18.[Program to find LCM of two numbers without recursion :star:](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/18_LCM.c)
35
-
19.[Program to find GCD of two numbers without recursion :star:](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/19_GCD.c)
34
+
18.[Program to find LCM of two numbers without recursion :snowflake:](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/18_LCM.c)
35
+
19.[Program to find GCD of two numbers without recursion :snowflake:](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/19_GCD.c)
36
36
20.[Program to print wedge,pyramid and diamond pattern](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/20_Pattern.c)
37
37
38
38
39
39
Arrays:
40
40
----------------
41
41
1.[Find the smallest and Largest number in the array](https://github.com/packetprep/coding-questions/blob/master/Arrays/1_FindLargestSmallestInArray.c)
42
-
2.[Find the second smallest,largest number in the array :snowflake:](https://github.com/packetprep/coding-questions/blob/master/Arrays/2_FindSecondLargest.c)
42
+
2.[Find the second largest number in the array :snowflake:](https://github.com/packetprep/coding-questions/blob/master/Arrays/2_FindSecondLargest.c)
43
43
3.[Program to remove duplicate elements in an array :snowflake:](https://github.com/packetprep/coding-questions/blob/master/Arrays/3_RemoveDuplicates.c)
44
44
4.[Program to search for an element in an array using linear search](https://github.com/packetprep/coding-questions/blob/master/Arrays/4_LinearSearch.c)
45
45
5.[Program to sort an array in ascending order using Bubble Sort](https://github.com/packetprep/coding-questions/blob/master/Arrays/5_BubbleSort.c)
7.[Find the frequency of numbers in an array](https://github.com/packetprep/coding-questions/blob/master/Arrays/7_FrequencyCounter.c)
49
49
8.[Program to separate Even and Odd numbers in an array ](https://github.com/packetprep/coding-questions/blob/master/Arrays/8_SeparateEvenOddInArray.c)
0 commit comments