We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 64d4ebf + 4bd850c commit a736657Copy full SHA for a736657
1 file changed
chp17_strings/exercise_17_03_equals/exercise_17_03_equals.pde
@@ -5,7 +5,7 @@
5
// Exercise 17-3: Find the duplicates in the following array of Strings.
6
7
/*
8
-String words = { "I" , "love" , "coffee" , "I" , "love" , "tea" } ;
+String words[] = { "I" , "love" , "coffee" , "I" , "love" , "tea" } ;
9
for (int i = 0; i < ______________; i ++ ) {
10
for (int j = _; j < ______________; j ++ ) {
11
if (___________________) {
0 commit comments