Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Is the **blank** object mutable or immutable? How can you tell?

```text
PUT ANSWER TO #2 HERE
It is mutable
```

```java
Expand Down Expand Up @@ -47,7 +47,7 @@ public class Puzzler {
* Explain how the return values from #3 and #4 differ.

```text
PUT ANSWER TO #5 HERE
Method 3 returns a numeric value while method 4 returns a point which represents the center of a rectangle.
```

```java
Expand Down Expand Up @@ -87,14 +87,16 @@ Recall that aliases are two variables that refer to the same object.
* Put the output in the text block below

```text
PUT ANSWER TO #2 HERE
The output of the program would be
(5'8)
(5'7)
```

3. At the end of main, are p1 and p2 aliased? Why or why not?
* Put your answer in the text block below

```text
PUT ANSWER TO #3 HERE
P 1 and P2 are not aliased, they represent different points in time and p1 and p2 are different points.
```

```java
Expand Down
13 changes: 12 additions & 1 deletion src/BigIntRewrite.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
import java.math.BigInteger;
public class void main(String[] args) {
public class BigIntRewrite {
public static void main(String[] args) {
public static BigInteger pow(int x, int n) {
if (n == 0) return BigInteger.ONE;

BigInteger t = pow(x, n / 2);

if (n % 2 == 0) {
return t.multiply(t);
} else {
return t.multiply(t).multiply(BigInteger.valueOf(x));
}
}
}
}
15 changes: 14 additions & 1 deletion src/StringPlayground.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
public class StringPlayground {
public static void main(String[] args) {
public static int checkParentheses(String s, char openChar, char closeChar) {
int count = 0;
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if (c == openChar) { count++; }
else if (c == closeChar) { count--; }
}
return count;
}
}

public static void main(String[] args) {
System.out.println(StringPlayground.checkParentheses("((3 + 7) * 2)"));
System.out.println(StringPlayground.checkParentheses("(3 + 7) * 2)"));
System.out.println(StringPlayground.checkParentheses("((3 + 7 * 2"));
}
Binary file added src/part2_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/part2_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/part3_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.