Skip to content

Commit fd10d20

Browse files
Merge branch 'main' into binary
2 parents ddfe876 + 9de269d commit fd10d20

File tree

6 files changed

+7
-9
lines changed

6 files changed

+7
-9
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- [Syllabus](SYLLABUS.md)
66
- [Discord for discussions](https://discord.io/commclassroom)
77
- [Telegram for announcements](https://telegram.me/commclassroom)
8+
- [Competitive Programming Resources](https://github.com/kunal-kushwaha/Competitive-Programming-Resources)
89

910
### Connect with me
1011
<a href="https://twitter.com/kunalstwt">

assignments/conditionals-loops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
5. Calculate Distance Between Two Points
3434
6. Calculate Commission Percentage
3535
7. Power In Java
36-
8. Deprecation Program
36+
8. Calculate Depreciation of Value
3737
9. Calculate Batting Average
3838
10. Calculate CGPA Java Program
3939
11. Compound Interest Java Program

assignments/functions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
2. Define a program to find out whether a given number is even or odd.
66

7-
3. A person is elligible to vote if his/her age is greater than or equal to 18. Define a method to find out if he/she is elligible to vote.
7+
3. A person is eligible to vote if his/her age is greater than or equal to 18. Define a method to find out if he/she is eligible to vote.
88

99
4. Write a program to print the sum of two numbers entered by user by defining your own method.
1010

@@ -31,8 +31,8 @@ Factorial of any number n is represented by n! and is equal to 1*2*3*....*(n-1)*
3131
2! = 2*1 = 2
3232
Also,
3333
1! = 1
34-
0! = 0
34+
0! = 1
3535

3636
10. Write a function to find if a number if palindrome or not. Take number as parameter.
3737

38-
11. Convert the programs in [flow of program](flow-of-program.md), [conditionals & loops](conditionals-loops.md), [first java](first-java.md) assignemts into functions.
38+
11. Convert the programs in [flow of program](flow-of-program.md), [conditionals & loops](conditionals-loops.md), [first java](first-java.md) assignments into functions.

assignments/searching.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
Videos:
22
- [Linear Search](https://youtu.be/_HRA37X8N_Q)
3+
- [Binary Search]()
34

45
Problems:
5-
- [Linear Search](https://www.hackerearth.com/practice/algorithms/searching/linear-search/practice-problems/)
6-
7-
Binary Search
86
- [Guess Number Higher or Lower(Easy)](https://leetcode.com/problems/guess-number-higher-or-lower/)
97
- [First Bad Version(Easy)](https://leetcode.com/problems/first-bad-version/)
108
- [Two Sum II - Input array is sorted(Easy)](https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/)
@@ -21,5 +19,4 @@ Binary Search
2119
- [Find Peak Element(Medium)](https://leetcode.com/problems/find-peak-element/)
2220
- [Search a 2D Matrix(Medium)](https://leetcode.com/problems/search-a-2d-matrix/)
2321
- [Reach a Number(Medium)](https://leetcode.com/problems/reach-a-number/)
24-
- [Koko Eating Bananas(Medium)](https://leetcode.com/problems/koko-eating-bananas/)
25-
22+
- [Koko Eating Bananas(Medium)](https://leetcode.com/problems/koko-eating-bananas/)
584 KB
Binary file not shown.
148 KB
Binary file not shown.

0 commit comments

Comments
 (0)