Problem For a homework assignment, I was asked to complete this CodeStepByStep problem. It’s coded correctly and gave me a […]
Tag: homework
C# Quicksort Assignment
Problem For my CS minor I was assigned to implement the Quicksort algorithm in C#. I gave it a go […]
SICP Exercise 1.3: Sum of squares of two largest numbers out of three, Haskell Version
Problem The exercise 1.3 of the book Structure and Interpretation of Computer Programs asks the following: Exercise 1.3. Define a […]
Calculating Payroll
Problem I have written the code as best that I know how but I am unsure that the questions asked […]
String reversal function
Problem I have an assignment to create a function that reverses the letters of each word in a string individually. […]
Suggestions for a Dungeons and Dragons-like game
Problem This game is similar to a Dungeons and Dragons game. How could I improve the efficiency of the program? […]
Pascal triangle algorithm is good but fails
Problem I have created a function which returns the number that corresponds to the given row and column from the […]
Simple school bank project in C++
Problem What is your opinion on this simple school project exercising OOP in C++? class Person { public: Person() = […]
Java application for finding permutations efficiently
Problem I am an eighth grader with a school project of creating and application in Java that returns the total […]
Building Data abstraction for line segments using “type abstraction”
Problem Below is the given exercise: Exercise 5: Segments Consider the problem of representing line segments in a plane. Each […]