Homework means the question is requesting help with school homework. This lets potential answerers know that they SHOULD guide the student in solving the problem, and SHOULD NOT simply show the complete answer.
8
votes
2answers
284 views
Bridge, We've Got a Problemo
Now that we can move across the bridge, it's time to finally set up the problem so that it can be solved. A reminder of what the assignment is:
Welcome to the Bridge Crossing Problem. Person Pn ...
5
votes
1answer
65 views
Displaying a randomly sized array as a table
This program creates an integer array with a random size of 5-50 elements (inclusive). It then fills the array with random numbers between 0 - 100 (inclusive). The interesting part comes when I then ...
6
votes
2answers
104 views
Moving across my (sturdier?) Bridge
Building on top of the classes in this question of mine, I've made this class to support the moving of the entities for my given assignment:
Welcome to the Bridge Crossing Problem. Person Pn can ...
15
votes
7answers
3k views
Sudoku solution without the use of classes
A Sudoku puzzle is a 9 × 9 grid with some numbers between 1 and 9 in
it, that has to be filled in so that
every row,
every column, and
each of the nine 3 × 3 blocks
contain ...
8
votes
1answer
97 views
I think my Bridge's foundation is too fragile
I've just started a new class learning Java, and since it's been a long time since I've programmed in it I thought I'd put up my first project to get back in the swing of things. Here is my first ...
3
votes
3answers
77 views
Interplanetary weight calculator
I have been using this site for a couple of years for great answers and a ton of help. I wrote this program for my class project due 1/23. I am just wondering what you would recommend me changing or ...
7
votes
3answers
423 views
Check if 2 arrays have (exactly) the same elements recursively
I've been given a homework assignment to make a function to check whether 2 given arrays with the same given size have exactly the same set of elements.
My function seems to be working but I feel ...
21
votes
6answers
3k views
To 'this' or not to 'this'?
I was given a homework and I have 2 solutions: one that uses this and other one that doesn't.
I tested it on jsPerf but sometimes it says the version with ...
1
vote
3answers
119 views
Removing punctuation and lowercasing a string
I am very fresh to python. As part of an assignment, I've written the following code to remove punctuation from a string and convert it to lowercase.
...
1
vote
0answers
57 views
Dice rolling swipe Android app
So I've got an Android app where if you swipe in a particular direction (UP, DOWN, RIGHT, LEFT), the dice move in that direction using TranslateAnimation. This is ...
4
votes
2answers
114 views
DNA base pair match counter
So my code is done it outputs exactly what it needs to I'm just wondering if it is possible to make this code a lot more simple using objects. If so could someone tell me what I would need member-wise ...
2
votes
1answer
41 views
Printing polynomials
I am taking a class on ruby and our assignment is to take user input and print out a polynomial. Wondering if I can get any feedback to how to improve my code.
...
4
votes
2answers
996 views
Hexadecimal number to decimal conversion
I am a semi-beginner in C++ and I have a project in C++ to convert a hexadecimal integer into decimal equivalent, but I extended it and now this program can also convert a fractional part.
Logic I ...
4
votes
1answer
84 views
Deitel Java exercise 6.30: Number-guessing game
I missed points for putting implementation in the driver class, rather than having the driver class only make call methods in other classes. I'm not sure how to move the implementation outside of the ...
3
votes
3answers
110 views
0
votes
1answer
116 views
UPenn CIS 194 Homework 4: Higher-order programming
I am working through UPenn CIS 194: Introduction to Haskell (Spring 2013). Since I am not able to take the course for real I am asking for CR (feedback) as it could be from teacher in that course.
...
2
votes
1answer
105 views
UPenn CIS 194 Homework 3: Code golf
I am working through UPenn CIS 194: Introduction to Haskell (Spring 2013). Since I am not able to take the course for real I am asking for CR (feedback) as it could be from teacher in that course.
...
3
votes
1answer
93 views
UPenn CIS 194 Homework 2: Log file parsing
I am working through UPenn CIS 194: Introduction to Haskell (Spring 2013). Since I am not able to take the course for real I am asking for CR (feedback) as it could be from teacher in that course.
...
1
vote
2answers
229 views
UPenn CIS 194 Homework 1: Validating credit card numbers
I am working through UPenn CIS 194: Introduction to Haskell (Spring 2013). Since I am not able to take the course for real I am asking for CR (feedback) as it could be from teacher in that course.
...
6
votes
2answers
124 views
2D array to draw a letter 'F'
This is my code to print letter 'F' with nested loop 2d array. Are there changes that could be made in it to make it look better or more efficient?
...
7
votes
2answers
650 views
Three-in-a-row board game
I don't truly understand how OOP works and It's stopping me from creating good programs! Below I have a program that will check to see if there are 3 tiles from a gridview in a row.
Here's a ...
2
votes
3answers
176 views
Music collection with lyric songs and instrumental pieces
I have problems with dealing with derived classes that inherit from the same base class.
I have 2 types of songs:
Songs with lyrics that have: Title, Tags (sad, happy etc.), lyrics (one line), ...
1
vote
0answers
32 views
Removing JLabels by pressing JButtons which disable if in excess
The goal of this code is to move some JLabels from (JLabel[] pileone) off a JFrame when a ...
2
votes
2answers
103 views
IntArray implementation [closed]
I need to write an IntArray implementation for college. I'm wondering if my code could be better and if it is efficient. In the header file are the methods listed ...
4
votes
1answer
77 views
GUI SQL interface for select insert and remove
This is my final project for my second Java class! I would like to get some feedback on it to see where and what I can improve.
There are five class files:
...
-4
votes
1answer
187 views
Prompting the user for a product number and quantity [closed]
Write a Java application that prompts the user for pairs of inputs of
a product number (1,2,3,4,5) and quantity of units sold (any integer)?
Use a ...
-2
votes
2answers
118 views
Manipulating strings and character positions
Write a program that manipulates two strings. The program inputs two
strings (string1 and string2) and a character (...
6
votes
3answers
529 views
Geometry Calculations - Cube, Sphere, and Tetrahedron
This is the first code I've written. It's for an intro to Java course. Could you look over it and let me know of things I could improve before handing it in?
For reference, I've also provided what ...
2
votes
1answer
87 views
Graph, and a search that visits each edge exactly once in each direction
My assignment was to write a method that is capable of visiting each edge in a graph in each direction exactly once.
With it, I included a basic Graph class to test it with.
What I'd like a review ...
4
votes
1answer
77 views
Unit testing a CharGrid
I wrote NUnit tests for class CharGrid from this homework assignment.
My goal here is DRY: I want to keep the testing code as short and simple as possible. In addition, want to run every test ...
1
vote
1answer
139 views
Insect combinatorics challenge
Below is the problem taken from Berkeley's Cs61A page here
Question 9: Insect Combinatorics*
Consider an insect in an M by N grid. The insect starts at the bottom left corner, (0, 0), and ...
4
votes
2answers
296 views
3
votes
5answers
837 views
10 green bottles assignment
This code was for a university assignment. It's well passed now so don't be scared of giving me false grades, for example. I was wondering what could be done better, or bits of code that are horribly ...
5
votes
2answers
612 views
Minimum number of coins to make change
I am new to programming and I am taking CS50 2014 online through iTunes University. This is the change-making problem in Problem Set 1:
Write a program that first asks the user how much change is ...
6
votes
2answers
175 views
FizzBuzz-like Assignment
I have an assignment for my Java programming class that is kind of an expanded FizzBuzz-like question:
Write a program that iterates through numbers from 0 to 113 using a loop. Print the ...
8
votes
3answers
805 views
Sums of some array elements
I'm doing an archived MOOC at the moment which introduces Ruby programming.
There are some assingments, yet no solutions and since the MOOC is over no one will correct those (+ the forum is down)
I'm ...
8
votes
1answer
1k views
First assignment for Stanford iOS8 Course: enhancing a calculator
I recently started learning Swift through Stanford iOS8 Course. The first assignment is to add some features to simple Calculator which was presented during lectures.
List of tasks:
add button for ...
5
votes
4answers
3k views
Word Guessing Game
I'm trying to learn Java (albeit rather slowly). I'm in a computer science class at my highschool and I've written this little bit of code for a project. Basically it is a word guessing game where if ...
5
votes
1answer
148 views
Enter values, generate a list, and search
My assignment in school:
Read in names to sort until the user types the “enter” key
After sorting and displaying the array of strings
Do a binary search to find if the string is in the array
If the ...
2
votes
1answer
596 views
Priority Queue Linked List Implementation
I am new to Python and wanted to make sure my code answers the question for my assignment due.
My Task:
A priority queue is a queue in which each item is assigned a priority
and items with a ...
0
votes
1answer
537 views
Cartesian product of two tuples - python
I'm solving exercise 4 from Discussion 3 of Berkley's CS 61A (2012) (see page 4):
Fill in the definition of cartesian_product. ...
2
votes
2answers
474 views
War card game simulator
My teacher wants us to create a program that runs n games of war and calculates the average number of battles, wars and double wars that occurred. He has very specific rules (not necessarily the ...
2
votes
2answers
185 views
Simple Binary Adder
The program adds two binary numbers in two' s complement ignoring the overflow for a constant size of bits. I am trying to generalize the program by taking input from the user in a single line without ...
8
votes
4answers
3k views
Printing an Alternating Pattern to the Console
For this assignment, you will create the pattern of a chess board that
is 8 x 8. Use X and O to represent the squares.
Create the appropriate nested looping structure to output the ...
5
votes
1answer
126 views
SICP Exercise 1.3: Sum of squares of two largest numbers out of three, Haskell Version
The exercise 1.3 of the book Structure and Interpretation of Computer Programs asks the following:
Exercise 1.3. Define a procedure that takes three numbers as arguments and returns the sum of ...
5
votes
3answers
298 views
SICP Exercise 1.3: Sum of squares of two largest numbers out of three
The exercise 1.3 of the book Structure and Interpretation of Computer Programs asks the following:
Exercise 1.3. Define a procedure that takes three numbers as arguments and returns the sum of ...
3
votes
1answer
255 views
Payroll Program using 3 types of pass-by
This program is a payroll using calculate two types of employee. Two overloaded functions for two type of employee (hourly and salaried). There must be one pass-by-value, one pass-by-reference, and ...
6
votes
5answers
714 views
Simple technology quiz
This is my first program that uses more than just boring ol' if/else statements - I made a whole 246 line game that's still a ...
6
votes
2answers
369 views
Hex Editor in C
I had a homework assignment to create a simple hex editor that reads binary files as well as write integers to it. However I enhanced it a bit. Homework is already submitted, but that doesn't mean ...
3
votes
3answers
141 views
Multiple for loops in Sudoku solver
I have an assignment for writing a Sudoku solver and have achieved the functionality required but a lot of the code is "ugly" and I'm wanting to simplify it but unsure how to.
...