programming-excercise
There are 4 repositories under programming-excercise topic.
mateensa/SyPy
This git project contains programming excercises written in python for almost everything ranging from Solving Problems using Algorithms and Data structures, webscrapping, managing connectivity to db, ml and plotting graphs
ishaansathaye/daily-problems
Daily Coding Problems on CodeSignal and LeetCode
MyCueCards/FiveColors2
Create a project named FiveColors2. Its Form contains at least five RadioButton objects, each labeled with a color. When the user clicks a RadioButton, change the BackColor of the Form appropriately. Taken from Microsoft Visual C# 2015: An Introduction to Object-Oriented Programming 6th Edition by Joyce Farrell. Page 603, Exercise 3.
MyCueCards/Hurricane
The Saffir-Simpson Hurricane Scale classifies hurricanes into five categories numbered 1 through 5. Write an application named Hurricane that outputs a hurricane’s category based on the user’s input of the wind speed. Category 5 hurricanes have sustained winds of at least 157 miles per hour. The minimum sustained wind speeds for categories 4 through 1 are 130, 111, 96, and 74 miles per hour, respectively. Any storm with winds of less than 74 miles per hour is not a hurricane. Taken from Microsoft Visual C# 2015: An Introduction to Object-Oriented Programming 6th Edition by Joyce Farrell. Page 186, Exercise 4.