Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update PoorCode.java #33

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/PoorCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -187,18 +187,18 @@ public static boolean p(int n) {
}

// Converts integer array to string
public static String intArrayToString(int [] arr)
{
if(arr == null) return "null"; // if null then "null"
String out = "[";
public static String intArrayToString(int [] arr) {
if(arr == null)
return "null"; // if null then "null"
StringConstructor out = new StringConstructor"[";
for(int i = 0;i<arr.length; i++) {
if(i > 0)
out = out + ", "; { // add comma when necessary
out = out + arr[i];
}} /* TODO: fix this */
out = out + "]";
// Close the array
return out; // return out;
return out;
}

// Big Sergio Comp8860 -> bIG sERGIO cOMP8860
Expand Down