You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repo is a collection of simple and fun pieces of code that i have made while learning how to program.
PROJECT-5: Battleship CLI game in C++ ( INITIAL RELEASE PUBLISHED ) ( /battleship/main.cpp )
A CLI version of Battleship game with all functions and menu system
-> Complete menu system
-> Error handling and winning conditions
-> Custom help page for issues
-> For better understanding of functions and array indexing
TODO FOR FUTURE DEVELOPMENT
-> Need to develop a GUI version of the same game
-> Error handling for non-integer input
-> Add more advanced features to the game
-> Add the reorder map function
PROJECT-4: Crossword puzzle game in python ( /codes/cross.py )
crossword puzzle game using python , list used as db , for loops used, complete error handling
-> Good for learning array indexing
-> Error handling present
-> Custom crossword can be added
PROJECT-3: Hotel room booking using dictionary ( /codes/book_room.py )
simple hotel booking s/m using dictionary and room types and also checkout menu added
-> Dictionary used as db
-> For strong foundation in dictionary
PROJECT-2: Tick Tack Toe using c++ ( /codes/tick_tac_toe.cpp )
simple two player game tick tack toe written in c++ , has all winning condition , error handling
-> Completely written in C++ ( only basic functions )
-> Dynamic code execution
-> Proper error handling