python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Print recursive * pattern
I have trouble printing the * pattern.
They should have 2 functions: printStars() and printLine(). printStars(int n), is used to print a line of n stars; the second one, printLines(int m), is to print...
Thien Nguyen
Votes: 0
Answers: 1
How to use iterator pattern in java to load file into hashmap in batches
I have a large file containing two million lines . I'm looking to traverse through each line of the file and, process it into a key value pair and store it into a hashmap to make comparisons later on....
Devanshi_K
Votes: 0
Answers: 1
Designing methods to manipulate an array in C
I need to write a program that:
asks the user for an input
stores those inputs in an array
shows all the given inputs as a list
asks the user which input to delete
The user is supposed to have freed...
Bendik Gaute Bjørnson
Votes: 0
Answers: 1
Rules Pattern on Object Change
I have a system that lets people create and work with Orders. Orders can have multiple Steps. The Order can have a status of New, InProgress, Done, and Cancelled.
There are a bunch of business rules o...
vkapadia
Votes: 0
Answers: 2