Skip to content

Commit 5b39984

Browse files
committed
update README
1 parent 1ccc69a commit 5b39984

File tree

6 files changed

+6
-6
lines changed
  • Logic Building
    • Check whether a given number is even or odd
    • Find the number closest to n and divisible by m
    • Program for Sum of squares of first n natural numbers
    • Program to find sum of first n natural numbers
    • Program to print multiplication table of a number
    • Swap Two Numbers

6 files changed

+6
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Even/Odd Method
1+
## Check Even/Odd
22
- By Finding the Remainder
33
- Using Bitwise AND Operator
44
- Using Bitwise Shift Operators
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
## closest_to_n_and_divisble_by_m Method
1+
## Closest number
22
- Iterative Checking
33
- By finding Quotient
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
## Sum of square_natural_number Method
1+
## Sum of square of natural
22
- Adding One By One (Overflow, Not_Overflow)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
## Sum of natural number
1+
## Sum of natural
22
- Loop Based Summation (Overflow, Not_Overflow)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
## Multiplication Table Method
1+
## Multiplication Table
22
- Iterative Approach
33
- Recursive Approach
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Swap Method
1+
## Swap two numbers
22
- Using third variable
33
- Without using third variable (arithmetic, bitwise)
44
- Built-in swap

0 commit comments

Comments
 (0)