Paragram Slide - AZ

Discord ID: 408698163730579457


69 total messages. Viewing 100 per page.
Page 1/1

New member in AZ. Also interviewed with @Sean.

@sigruna14 - I have 6 computer in my office, that was crossfire from login to voice on 2 of them... one of them connected to amp

Lopez needs to enjoy it while it lasts. If they get their way, USA will be Mexico, but w/ mass migration even further down the IQ spectrum. Without white people, the Mexicans will be the "producer class" that resentment is aimed at.

Their "white" voice is always a treat to hear.

Not sure if anyone posted this:

IE mentioned

BJJ ultra-heavy weight class is 221+ (with gi)

who trains BJJ here?

make the first && an ||

if o is not null you will move to the else if

and get(i).data could be null

Object.equals(get(i).data, o)

break when cur is null

cur is never null?

is there a stack trace?

where do you get the null?

for (int i = 0; i < index && cur != null; ++i)

try changes to that for loop

I suspect cur is null

and the recursion

```public ListNode get(int index) throws IndexOutOfBoundsException{
ListNode cur = head;
for (int i = 0; i < index && cur != null; i++) {
if (i == index) {
return get(i);
}
cur = cur.next;
}
return null;
}
```

```return get(i);```

and what is head

is this linked list or tree node?

that get() could return null

how many nodes in list3

println after init()

list3.add("C") will throw

because last node was null

and when you get it... and attempt to set next

it must be the size then

get(this.size - 1) is returning null

```
ListNode last = get(this.size - 1);
if (last != null) {
last.next = newNode;
++this.size;
return true;
}
return false;
```

this would only happen adding first node to list I would think

what is this class?

data structures?

when I took that class we used C

Java was its own class back then - the OOP class

it's a good line of work

@Flint - that is great

I have meeting in 3 mins

but that is close

Red Ice reported it was IsraAID

the truck

69 total messages. Viewing 100 per page.
Page 1/1