GitHub topics: abstract-classes
mbdanielcrespo/CPPs
The 42 C++ modules (CPP00–CPP09) offer a structured progression from fundamental to advanced C++ programming concepts, emphasizing object-oriented design, memory management, and standard library utilization.
Language: C++ - Size: 479 KB - Last synced at: 3 days ago - Pushed at: 4 days ago - Stars: 0 - Forks: 0

pdalbem/POO
Repositório da disciplina Programação Orientada a Objetos
Language: Java - Size: 1.07 MB - Last synced at: 5 days ago - Pushed at: 5 days ago - Stars: 0 - Forks: 0

madhurimarawat/Object-oriented-programming-with-c-plus-plus
This repository contains programs in the C++ programming language related to Object Oriented programming.
Language: C++ - Size: 1.64 MB - Last synced at: 23 days ago - Pushed at: 9 months ago - Stars: 3 - Forks: 0

bodnya29179/TypeScript-Advanced
🏆 Advanced TypeScript examples covering types, method overriding, namespaces, module augmentations, global declarations, and best practices.
Language: TypeScript - Size: 117 KB - Last synced at: 29 days ago - Pushed at: about 2 months ago - Stars: 0 - Forks: 0

ProfCalabrese/4BT
ProgettoPokemon
Size: 48.8 KB - Last synced at: 29 days ago - Pushed at: 2 months ago - Stars: 0 - Forks: 2

ejarvinen/42CPP_Modules
Collection of 10 modules of C++ basics
Language: C++ - Size: 206 KB - Last synced at: about 2 months ago - Pushed at: 3 months ago - Stars: 0 - Forks: 0

PGCL1/CPP_Modules
Cpp - Understanding the basics
Language: C++ - Size: 813 KB - Last synced at: 3 months ago - Pushed at: 3 months ago - Stars: 0 - Forks: 0

Paroryx/UE10
Java programs for the tenth exercise unit (UE10) in "Software Development 1". Focus: exception handling, abstract classes, interfaces, and vehicle simulations.
Language: Java - Size: 1000 Bytes - Last synced at: 4 months ago - Pushed at: 4 months ago - Stars: 0 - Forks: 0

guicdas/CPP_42
C++ programming, modules from CPP00 to CPP09 from 42 common core.
Size: 35.2 KB - Last synced at: 17 days ago - Pushed at: 6 months ago - Stars: 0 - Forks: 0

manuchaitanya17/Object-Oriented-Programming
A Course for learning Object-Oriented Programming in Java.
Language: Java - Size: 4.32 MB - Last synced at: 18 days ago - Pushed at: 4 months ago - Stars: 0 - Forks: 0

MOHI-UDDIN-AKBAR/typeScript-OOP-concepts
Explore the fundamentals and advanced aspects of TypeScript with a focus on Object-Oriented Programming (OOP) concepts. Dive into abstract classes, inheritance, interfaces, generics, access modifiers, and more. This repository serves as a comprehensive guide to leveraging TypeScript for robust and maintainable software development.
Language: JavaScript - Size: 13.7 KB - Last synced at: about 1 month ago - Pushed at: 9 months ago - Stars: 0 - Forks: 0

YounesMoukhlij/CPP-Modules
CPP Modules to learn OPP.
Language: C++ - Size: 18.3 MB - Last synced at: 5 months ago - Pushed at: 5 months ago - Stars: 0 - Forks: 0

guicdas/CPP04_42
CPP04 module: Abstract classes and interfaces.
Language: C++ - Size: 2 MB - Last synced at: 17 days ago - Pushed at: 6 months ago - Stars: 0 - Forks: 0

guilhermelaviola/AbstractClassesAndInterfaces
Some examples that show how Abstract Classes and Interfaces work in Java. I learned this on Edureka.
Language: Jupyter Notebook - Size: 6.59 MB - Last synced at: 6 months ago - Pushed at: 6 months ago - Stars: 0 - Forks: 0

rphadtare/scala_by_examples
This repository consist sample programs to learn and understand core concepts
Language: Scala - Size: 18.6 KB - Last synced at: about 2 months ago - Pushed at: 10 months ago - Stars: 0 - Forks: 0

er-hiba/Transport-Management-PHP
PHP OOP program for managing transport methods in a travel agency.
Language: PHP - Size: 2.93 KB - Last synced at: 10 months ago - Pushed at: 10 months ago - Stars: 0 - Forks: 0

samuelmebrahtu/BAManager
Bank account manager, using the OOP concepts of Abstract Classes and inheritance
Size: 9.77 KB - Last synced at: 11 months ago - Pushed at: 11 months ago - Stars: 0 - Forks: 0

alishbannoor2/ObjectOrientedProgramming-with-cpp
Learn Object Oriented Programming Concepts in C++ here
Language: C++ - Size: 12.7 KB - Last synced at: 11 months ago - Pushed at: 11 months ago - Stars: 0 - Forks: 0

fatma2705/Appunti_Java
Appunti java
Size: 13.7 KB - Last synced at: 11 months ago - Pushed at: 11 months ago - Stars: 0 - Forks: 0

josephcheel/42-CPP
Nine projects that explore the fundamentals of C++, with a particular emphasis on object-oriented programming
Language: C++ - Size: 3.71 MB - Last synced at: 11 months ago - Pushed at: 11 months ago - Stars: 0 - Forks: 0

Mgobeaalcoba/poo-abstract-class-practice
Practica POO: abstract class, anonimous class, Inheritance and Polymorphism
Language: Java - Size: 14.6 KB - Last synced at: about 1 month ago - Pushed at: 12 months ago - Stars: 1 - Forks: 0

amadr-95/java-abstract
Abstract class example
Language: Java - Size: 125 KB - Last synced at: about 1 month ago - Pushed at: 12 months ago - Stars: 0 - Forks: 0

bell-kevin/inventorySales
inventory Sales. The ideas of abstract classes and interfaces can be difficult. Both concepts are used to enforce behavior in a project. That is, any class that inherits from an abstract class must implement whatever was abstract in that class. Any class that implements an interface has access to the variables declared there, and if there are any methods, they must be implemented in that class. You may write a class or interface for a specific project, so you can make sure to include whatever methods that need to be implemented. If your class or interface is used in another project, how do you ensure that the other project will have the appropriate methods? Abstract methods and methods in an interface require some code before the compiler can execute, thus enforcing certain behaviors. To see this in action, this simple project about inventory and sales of items in inventory will have an abstract method, which makes the class abstract, and an interface with a method. There are 2 types of inventory, food and non-food (other items), and each is taxed at a different rate. Start with the interface, which specifies sales tax. This tax interface has 2 variables for tax rates in it -- 4% for food, 10% for other items. These can be declared as constants in the tax interface, and when the interface is implemented in the inventory classes, those values are available. What does this provide? You might consider these to be global values, declared in one place and used in many. If the tax rate changes, you only have to edit the value for those variables in the interface, and all methods will use that new rate. In addition, this tax interface will have a method to make sure that tax is calculated for each sale. This is an example of enforcing behavior. If the method to calculate tax is declare in an interface, it is the header only, no content or code -- that is left up to the classes and methods that use this interface. Because the method is declared in the interface, it must also be declared in the classes that implement the interface, which enforces the behavior that sales tax must be calculated. It becomes much harder to "forget" to calculate the tax if the method to calculate it is required this way. Create an interface in your project. Click on File, then New File, select Java Interface, which is just below Java Class. Name it Tax -- use an initial uppercase letter, as you do with classes. Declare 2 constants, one for food tax at 4% or .04, one for non-food or item tax at 10% or .10. Write the header for a method to calculate the tax, which needs a double as a parameter and returns a double. End this header with a semicolon -- this declares the method but doesn't flesh it out, which must be done in classes that implement this interface before the project can compile. Create an Inventory class which is the super class for the 2 types of inventory. This class has instance variables for the inventory ID (integer), name (string), quantity on hand (integer), and unit cost (double). The constructor for the class includes all 4 instance variables as parameters. Write a method to display the item, as seen in the images below, making sure to display money values correctly. There will be 2 other classes, sub classes to the Inventory class. One is Food, one is OtherItem. The only difference in these classes is they use different tax rates. You might question why there are 3 classes to describe inventory when the only difference is that tax rate. You could have a field or fields in Inventory that specify if the item is Food or Other, which would work in this very simple example. But in more realistic projects, food items would have a lot of instance variables that don't describe non-food items, and non-food items would have a lot of instance variables not appropriate for food items. To focus on abstract methods and interfaces, we are leaving out all of those specific variables and including only the 4 that are common to both sub classes. Create a Food class that inherits from the Inventory class. It has no additional instance variables. Its constructor needs 4 parameters, and all of them will be sent to the super class constructor. Create a class for OtherItem that inherits from the Inventory class. It looks exactly the same as the Food class so far. There are 3 classes in this project. Where should you implement the Tax interface? If only one of the sub classes needed the variables and methods of this interface, then that sub class would implement it. In this case, both the Food class and the OtherItem class could implement it. If the super class, Inventory, implements the interface, then both sub classes will inherit that implementation. It is another way to enforce behavior to implement the interface at the super class level, which will require code in the sub classes for the interface method(s). So implement the Tax interface in the Inventory class. Look at the Food and OtherItem classes -- they won't compile at this point. The Tax interface has a method header in it to calculate the tax, which must be completed -- its code must be written to satisfy the requirements of interfaces. You could write code for that method in the Inventory class -- but the sub classes need to use different tax rates. So the best place to implement the method is in each sub class. Write a method to calculate the tax in the Food class and in the OtherItem class. The specifications of the method are in the interface -- it has a name, it needs a double for a parameter, and it returns a double. The code you write in the sub classes can do whatever work is needed for each class, as long as it matches that header in the interface. In the sub classes, add a method for calculating the tax, which returns the price of a purchase multiplied by the appropriate tax. This method returns the amount of tax, doesn't add to a total cost or change inventory levels, just calculate tax for that kind of inventory object. Note that it is possible to have multiple interfaces in a project. If there were two interfaces, like FedTax and StateTax, you could implement both in a class with "implements FedTax, StateTax" -- put a comma between them. Go back to the Inventory class. You could write a method to calculate the cost of an inventory object. That method could be inherited in sub classes. But you may not be able to say that the calculation is exactly the same in every sub class. The way to require a method in sub classes is to declare its header in the parent class and make it abstract. Just like declaring a method in an interface, you write the header line of the method and end it with a semicolon -- no code in the body of this method. Add the word "abstract", usually after "public" and before the return type. If this method that must be written in sub classes is named "calcCost", the header might be: public abstract double calcCost(int qty); Because this method is abstract, the entire class must be marked as abstract. Add that word in the class header, like this: public abstract class Inventory implements Tax { Now there is a method named calcCost in the Inventory class that is abstract. That means the sub classes, Food and OtherItem, must have methods that provide the code for calcCost. Go to each sub class, which is not able to compile without handling the abstract method. Add the method, which must have the same header but without the word "abstract". In this simple project, again, these methods are identical in the two sub classes, but in reality, they could be very different. In this project, check if the quantity of the purchase is less than or equal to the quantity on hand. If the sale quantity is valid, determine the price by multiplying the quantity of the purchase and the unit cost. Calculate the tax by calling the calcTax method that was required by the interface. Add that tax to the price. Subtract the quantity of the sale from the quantity on hand. Return the price. If the quantity of the purchase is invalid, if it is greater than the quantity on hand, print out an error message and return a price of zero. At this point, you should have: an interface for the tax rates, which includes a method to calculate tax a class for inventory, which has 4 instance variables, a 4-parameter constructor, a display method, and an abstract method for calculating the cost of a sale, which requires that the whole class is abstract, and it implements the Tax interface a sub class for Food objects that inherits from the Inventory class, which has code for the method to calculate tax (required from the interface) and for the method to calculate the cost of a sale (required to complete the abstract method in the Inventory class) a sub class for OtherItem objects that is basically identical to the Food class, except it uses a different tax rate in the method to calculate the tax Now work on the main method. Create an Array List of Inventory objects. Add anonymous Food objects and OtherItem objects to it, 2 of each type. Using a For-Each loop, print out the item, ask the user how many they want to purchase, get the price for that sale, and print out the item to see that the quantity on hand has changed. Here is the sample session. The first sale for each type of inventory is more than the quantity on hand, so it prints the error message. If there is enough to sell, it prints out the price for that quantity plus tax, and displays the new listing.
Language: Java - Size: 137 KB - Last synced at: about 1 month ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

LuisFernandoVillalon/cs231-IntroDataStructures
A repository to showcase my coursework for my Introduction to Data Structures college course.
Language: Java - Size: 64.5 KB - Last synced at: about 1 month ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

VSUrhuel/library-java-polymorphism
This repository simulates a library system. The project includes various classes, such as Novel, Book, LibraryMember, Author, BorrowRecords, FilipinianaMaterial, PhilippineIslandGroup, Genre, and Textbook, each representing different entities and functionalities of the library system.
Language: Java - Size: 67.4 KB - Last synced at: about 1 year ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

VSUrhuel/pokemon-java-polymorphism
This repository contains a Java implementation of a Pokemon game. The game includes various classes that represent different aspects of the game, such as moves, statuses, and Pokemon.
Language: Java - Size: 78.1 KB - Last synced at: about 1 year ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

bhaveshrp/Java-Codes
Java Code Snippets for basic understanding of Java Concepts
Language: Java - Size: 26.4 KB - Last synced at: about 1 year ago - Pushed at: almost 6 years ago - Stars: 0 - Forks: 0

dolovnyak/cpp-modules
Set of tasks for learning C++
Language: C++ - Size: 4.14 MB - Last synced at: about 1 year ago - Pushed at: almost 4 years ago - Stars: 0 - Forks: 0

AnushkaReddy-hub/Supermario
Mario in the magical land of Mushroom Kingdom!
Language: Java - Size: 1.84 MB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

karisti/42_python_for_datascience
Introduction to Python for data science. 42 Madrid cursus project.
Language: Python - Size: 42 KB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

ovinokurov/AbstractMultiplication
This C# application showcases abstract classes and polymorphism via multiplication strategies. It includes an abstract Multiplier class and implementations for various operations: simple multiplication, doubling, tripling, negating, and more, demonstrating extendable, object-oriented programming practices in C#.
Language: C# - Size: 5.86 KB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

0xromjobert/cpp04
A 42 exercise on subtype polymorphism, abstract classes and interfaces in C++
Language: C++ - Size: 29.3 KB - Last synced at: 21 days ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

mostrovski/digitaliseme
A demo PHP project showcasing building the MVC application from scratch.
Language: PHP - Size: 824 KB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 2 - Forks: 1

er-hiba/Employee_Tracker_GUI
Python GUI for Employee Data Management with JSON Data Storage
Language: Python - Size: 32.2 KB - Last synced at: about 1 year ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

Ziko909/Cpp-Models
a bunch of exercises to discovering the cpp features
Language: C++ - Size: 4.91 MB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

rctn-dev/python-projects
Order Payment System
Language: Python - Size: 1.95 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

er-hiba/Employee_Management
Python-based Employee Management System: Tracks bosses, sellers, and cashiers with role-specific details and relationships.
Language: Python - Size: 26.4 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 1 - Forks: 0

er-hiba/Products_Price
A Python program managing product compositions and prices.
Language: Python - Size: 53.7 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 2 - Forks: 0

er-hiba/Animal-Abstract-Class-PY
A Python demonstration illustrating an abstract class and its usage in inheritance.
Language: Python - Size: 12.7 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

er-hiba/Animal-Abstract-Class-Java
A Java demonstration illustrating an abstract class and its usage in inheritance.
Language: Java - Size: 19.5 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

suryasdas/CECS-277-INHERITENCE
Language: Java - Size: 1.95 KB - Last synced at: over 1 year ago - Pushed at: about 6 years ago - Stars: 0 - Forks: 0

khchuang12/Infection-Saucer
Simulates game in which cells on a board can move, divide, multiply, spawn and delete in order to overcome other cells and win the game
Language: Java - Size: 19.5 KB - Last synced at: over 1 year ago - Pushed at: over 3 years ago - Stars: 0 - Forks: 0

Mohamed-Taha-Essa/HackerRankProblems
Hacker rank solution using python programming language with simple code.
Language: Python - Size: 23.4 KB - Last synced at: about 1 month ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

FernandoCesarMS/AtividadePratica9
Atividade Prática referente à disciplina de Programação Orientada a Objetos (ELE078), do curso de Engenharia de Controle e Automação - UFMG. Atividade sobre Polimorfismo, Funções Virtuais , Classes abstratas e RTTI.
Language: C++ - Size: 6.84 KB - Last synced at: over 1 year ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

TebogoYungMercykay/Towers_Of_Hanoi_Puzzle_Solver
Towers of Hanoi is a popular puzzel game that consists out of two main components: three towers and n number of disks. The goal of this puzzel game is to move the tower of disks from one tower to another tower with only moving a single disk at a time.
Language: C++ - Size: 216 KB - Last synced at: about 1 month ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

himanshu1295/python_5
Abstract Classes and Methods in python
Language: Python - Size: 4.88 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

Aaronwins/NBA-Teams
Description attached in readme file, but the theme is head coaches, players and Teams in the NBA, written in Java in IDE BlueJ
Language: Java - Size: 179 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

ikranergiz/Java-React-Software-Developer-Training-Camp
This repository is the assignments of the software development camp prepared by Engin Demiroğ. (April 21 - June 12 , 2021)
Language: Java - Size: 159 KB - Last synced at: almost 2 years ago - Pushed at: almost 4 years ago - Stars: 3 - Forks: 0

VSUrhuel/restaurant-java-inheritance-polymorphism
This repository contains the necessary Java classes for a restaurant management system. These classes are designed to handle various aspects of restaurant operations such as menu management, customer orders, and payment receipts.
Language: Java - Size: 1.95 KB - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

mwagner86/CPP_04
CPP Project 04
Language: C++ - Size: 43.9 KB - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 1 - Forks: 0

LoicKonan/Java-Python
Java and Python Programs
Language: Python - Size: 3.95 MB - Last synced at: over 1 year ago - Pushed at: over 3 years ago - Stars: 1 - Forks: 0

LoicKonan/2143-OOP-Konan
Object-Oriented Programing
Language: C++ - Size: 56.2 MB - Last synced at: over 1 year ago - Pushed at: over 3 years ago - Stars: 2 - Forks: 1

Abensett/16.CPP-Module-04
Language: C++ - Size: 95.7 KB - Last synced at: almost 2 years ago - Pushed at: almost 3 years ago - Stars: 0 - Forks: 0

SharinLana/typescript-sorting
A generic sorting algorithm able to sort strings, arrays of numbers and linked lists
Language: JavaScript - Size: 16.6 KB - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

tblaase/CPP-Module-05
My solution for CPP Module 05 of the Common core of 42 school.
Language: C++ - Size: 146 KB - Last synced at: about 2 years ago - Pushed at: about 3 years ago - Stars: 0 - Forks: 1

caarloshenrique/sistema-bancario
:moneybag: Um sistema de transações bancárias desenvolvido em Java
Language: Java - Size: 37.1 KB - Last synced at: about 2 years ago - Pushed at: almost 5 years ago - Stars: 2 - Forks: 0

bhavyanarang/ColorSwitch
An attempt at making the Color Switch game.
Language: Java - Size: 2.48 MB - Last synced at: almost 2 years ago - Pushed at: over 3 years ago - Stars: 3 - Forks: 0

Mathias007/c-sharp-oop
Zbiorcze repozytorium projektów wykonanych w C# z zastosowaniem technik programowania obiektowego.
Language: C# - Size: 148 KB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

StuartDaniells/WordGame_Recursion
Using recursion, guess the number of repetitive letters in a word or words
Language: Java - Size: 440 KB - Last synced at: 22 days ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

dcc-cc3002/Imagine-There-s-No-Classes
Introductory material to Object-Oriented Programming
Size: 9.77 KB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

Norman-Arredondo/PHP_POO
Recordatorio de PHP con programación orientada a Objetos
Language: PHP - Size: 20.5 KB - Last synced at: almost 2 years ago - Pushed at: over 4 years ago - Stars: 1 - Forks: 0

Hanna2m/sorter
Create a sorter for numbers, string and nodeList. The goal for this project is only to write out a sorting algorithm one single time.
Language: JavaScript - Size: 3.05 MB - Last synced at: almost 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

SABERGLOW/Java_Programming_Principles_of_Software_Design
My solutions to assignments/problems for the course (Java Programming: Principles of Software Design) offered by Duke University at Coursera.
Language: Java - Size: 760 KB - Last synced at: 22 days ago - Pushed at: over 4 years ago - Stars: 5 - Forks: 1

tblaase/CPP-Module-04
My solution for CPP Module 04 of the Common core of 42 school.
Language: C++ - Size: 132 KB - Last synced at: about 2 years ago - Pushed at: about 3 years ago - Stars: 0 - Forks: 0

Michelle-Lohwt/Student-Information-System
This system uses a singly linked list to store and organize related to student information. It allow operation such as adding new student’s information as well searching, deleting, and displaying the student information.
Language: C++ - Size: 26.4 KB - Last synced at: about 2 years ago - Pushed at: almost 4 years ago - Stars: 0 - Forks: 0

irtiza7/OOP-Semester-Tasks
Nothing special here. Go away.
Language: Java - Size: 31.3 KB - Last synced at: almost 2 years ago - Pushed at: almost 4 years ago - Stars: 0 - Forks: 0

DVR98/ClassHierarchy
Using Interfaces, Inheritance. How to create Abstract and Sealed classes, Using famous built-in .NET Framework Interfaces (IComparable, IEnumerable)
Language: C# - Size: 91.8 KB - Last synced at: about 2 years ago - Pushed at: about 4 years ago - Stars: 0 - Forks: 0

FernandoCesarMS/AtividadePratica10
Atividade Prática referente à disciplina de Programação Orientada a Objetos (ELE078), do curso de Engenharia de Controle e Automação - UFMG. Atividade sobre Polimorfismo, Funções Virtuais , Classes abstratas.
Language: C++ - Size: 13.7 KB - Last synced at: over 1 year ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

strickb2/Student-Database-App
Language: Java - Size: 2.93 KB - Last synced at: 6 months ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

0reldev/quest-java-oop2 Fork of WildCodeSchool/quest-java-oop2
Educational exercise from Wild Code School about abstract classes in Java.
Language: Java - Size: 25.4 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

eneakllomollari/Car-Configuration-App
Prototype for Kelley Blue Book functionality
Language: Java - Size: 971 KB - Last synced at: about 2 years ago - Pushed at: about 6 years ago - Stars: 0 - Forks: 0

ImRohitSingh/BasicPrograms
Basic programs from few regular languages...
Language: Java - Size: 280 KB - Last synced at: about 2 years ago - Pushed at: about 6 years ago - Stars: 0 - Forks: 0

miking-the-viking/learn-typescript
Step-by-Step TypeScript Project
Language: TypeScript - Size: 286 KB - Last synced at: about 2 years ago - Pushed at: over 6 years ago - Stars: 5 - Forks: 0

BalioFVFX/Cars-Battle
Console game
Language: Java - Size: 8.79 KB - Last synced at: about 2 years ago - Pushed at: over 6 years ago - Stars: 0 - Forks: 0
