-
Notifications
You must be signed in to change notification settings - Fork 26
Added GradeCalculator.java #60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Added Fibonacci Generator to Beginner Folder
Updated your code to handle edge cases
added the quicksort in algorithms folder
…Algorithm Create KMPAlgorithm.java
Added KMP Algorithm In Java
Added Javadocs header and made the filename more appropriate.
Prim's algorithm added in Java.
Added Tarjan’s Algorithm in Java
…orphism-inheritance feat: Added Shape Program for Hacktoberfest2025
Always include Javadocs headers.
Bellman-ford algo added
Javadocs header is crucial.
…ructure feat: add Queue implementation using custom singly linked list
Added the Javadocs header.
…usolver SudokuSolver.java
LinkedList implementation
Create LinkedList.java
added appropriate exception
Added the mandatory Javadocs header.
Create UnionFind.java
Added the mandatory header.
Rock Paper Scissors Game Java Code
Added the mandatory Javadocs header.
…-grade conversion (O(1) complexity)
@ghostrider2606 Hi maintainers 👋, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ghostrider2606 Hi maintainers 👋,
I’ve added a new Java beginner program for grade calculation using conditional logic.
Please review and merge if it looks good. Thank you!
Please refer to my previous comment regarding your PR for |
Goal: Implement a Java console application that takes a student's score and prints their grade using if-else statements.
Folder: Beginner
Technical Notes: Demonstrates Scanner (try-with-resources) and O(1) logic.