This repo contains basic Java problems. (None of them are projects)
Array Basic Codes:
- Largest Element in the array
 - Smallest Element in the array
 - Sort the elements in array (Naive Approach)
 - Two Dimensional Array
 
Basic Data Structures in Java: (Just enough to understand the concept. No complex coding included)
- Linear Search
 - Binary Search
 
Basic Number Codes in Java:
- Odd or Even
 - Positive Or Negative umber
 - Sum of N natural numbers
 - Sum of numbers in a given range
 - Rounding off a given number
 - Square root and cube root of a number
 - Multiplication Table of a num in given range
 - Greatest of 2 numbers
 - Greatest of 3 numbers
 - Power of N (Using loop)
 - Learn to use 'Break'
 - Learn to use 'Continue'
 - Learn to use 'Switch'
 - Leap year or not
 - Check prime number or not
 - Print N numbers in reverse order
 - Strong number