Skip to content

Commit b397427

Browse files
committed
read me changed
1 parent f512ccf commit b397427

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,38 +8,38 @@ If you are preparing for coding round for interviews,then this repo with help yo
88
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>
99

1010
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
1212
1313
Video Lectures : https://packetprep.com/course/coding-for-interviews
1414

1515
Basic Programs
1616
--------
1717
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)
2020
4. [Program to check if the given number is Perfect number](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/4_CheckPerfect.c)
2121
5. [Program to check if the given number is Armstrong number](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/5_CheckArmstrong.c)
2222
6. [Find the factorial of a number](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/6_Factorial.c)
2323
7. [Program to check if the given number is Strong number](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/7_CheckStrong.c)
2424
8. [Program to count the digits of a number](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/8_CountDigits.c)
2525
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)
2727
11. [Program to print Hello World without semicolon](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/11_HelloWorldNoSemiColon.c)
2828
12. [Find the largest of two numbers without conditional statement](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/12_LagrestNumWithoutConditional.c)
2929
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)
3030
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)
3131
15. [Program to check if the year is a Leap year](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/15_LeapYear.c)
3232
16. [Program to convert Binary to Decimal and viceversa](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/16_DecimalBinaryConverter.c)
3333
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)
3636
20. [Program to print wedge,pyramid and diamond pattern](https://github.com/packetprep/coding-questions/blob/master/Basic%20Programs/20_Pattern.c)
3737

3838

3939
Arrays:
4040
----------------
4141
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)
4343
3. [Program to remove duplicate elements in an array :snowflake:](https://github.com/packetprep/coding-questions/blob/master/Arrays/3_RemoveDuplicates.c)
4444
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)
4545
5. [Program to sort an array in ascending order using Bubble Sort](https://github.com/packetprep/coding-questions/blob/master/Arrays/5_BubbleSort.c)
@@ -48,12 +48,12 @@ https://github.com/packetprep/coding-questions/blob/master/Arrays/7_FrequencyCou
4848
7. [Find the frequency of numbers in an array](https://github.com/packetprep/coding-questions/blob/master/Arrays/7_FrequencyCounter.c)
4949
8. [Program to separate Even and Odd numbers in an array ](https://github.com/packetprep/coding-questions/blob/master/Arrays/8_SeparateEvenOddInArray.c )
5050

51-
______________________________________________________<br>
51+
---
5252
Written with lots of love & passion for programming...<br>
5353
Do give your valuable feedback... <br>
5454
Together we can make this repository awesome :thumbsup:
5555

56-
================================================================
56+
---
5757

5858
Krishna Teja G S @www.packetprep.com
5959

0 commit comments

Comments
 (0)