FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
processing-js/test/unit/arrayRemove.pde at master · processing-js/processing-js · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Dec 5, 2018. It is now read-only.
processing-js
/
processing-js
Public archive
Notifications
You must be signed in to change notification settings
Fork
880
Star
3.1k
Code
Issues
69
Pull requests
7
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
processing-js
/
test
/
unit
/
arrayRemove.pde
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
13 lines (12 loc) · 292 Bytes
Breadcrumbs
processing-js
/
test
/
unit
/
arrayRemove.pde
Copy path
File metadata and controls
executable file
·
13 lines (12 loc) · 292 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
ArrayList
balls;
balls
=
new
ArrayList
();
balls
.
add(
9
);
balls
.
add(
10
);
balls
.
add(
45
);
balls
.
add(
"
Anna
"
);
balls
.
add(
"
Jason
"
);
balls
.
add(
"
Mike
"
);
_checkEqual(balls
.
size(),
6
);
_checkEqual(balls
.
remove(
1
),
10
);
_checkEqual(balls
.
remove(balls
.
size()
-
1
),
"
Mike
"
);
_checkEqual(balls
.
size(),
4
);
Back
|
FazBrowse Home
|
New Git URL