assertx-java
There are 13 repositories under assertx-java topic.
assertX/assertX_Menu-Generator
Create a menu in a format from an input file. Add new items to the lists.
assertX/assertX_16-by-16-Sudoku-Solver
In this project, you are going to use recursion to solve a variant of Sudoku puzzles. Rather than the standard 9-by-9 version, your program will solve 16-by-16 (hexadecimal) Sudoku
assertX/assertX_Calendar-Generator
This was the first Java Project of the semester. Creating a Calendar Generator.
assertX/assertX_Color-To-Grayscale
In this assignment, you are going to write a program that converts a color image to grayscale image. Your program reads in an image in PPM format, converts each pixel's color data to grayscale, then writes them to an output PPM image file.
assertX/assertX_Island-Perimeter
In this assignment, you will be given a map which is represented by a 2-dimensional array (array of arrays). Each cell in the 2-dimensional array stores either 0 or 1 where 1 represents land and 0 represents water.
assertX/assertX_Maximum-Value-in-a-Bag
In this assignment, you are going to write a generic class, Bag. A Bag is a simple container that can hold items. It is unordered. We cannot sort or order items in a Bag. A Bag is homogenous; that is, it can only hold items of a single type.
assertX/assertX_Packaging
In this assignment, you have two kinds of boxes, small boxes (cube-shaped) and large boxes (cuboid-shaped). Your task is to pack as many small boxes as possible inside a large box. You are going to write a Java program that calculates the maximum number of small boxes that can be completely placed inside a large box.
assertX/assertX_Payroll-Calculator
This was the first assignment of the Java Semester
assertX/assertX_Railroad-Cars
In this assignment, you are going to write four related classes (plus the main() program), RailroadCar, TankCar, BoxCar, and RefrigeratorCar. Using class inheritance and polymorphism, you are going to write a well-organized object-oriented Java program.
assertX/assertX_Sign-In-Sign-Out-Logging-System
In this assignment, you are going to write a Java program that implements a simple sign-in/sign-out system.
assertX/assertX_Statistical-Data-Processor
In this project, you are going to write a Java program that does some statistical data processing. You need to store the input data from an input file in an ArrayList, and write the statistical results to an output file.
assertX/assertX_Token-Taking-Game
In this assignment, you are going to write a Java program to play a token-taking game. You program should use recursion to find a "path" to reach exactly K tokens within N turns. Using Recursive.
assertX/assertX_Triangle-Area
In this assignment, you are going to write a Java program that reads in the data of some triangles from the input file, calculate the area of the triangles (valid triangles only), and write the calculation results to the output file.