Skip to content

Commit 4bd850c

Browse files
committed
Fix syntax in exercise 17_03
1 parent 970cc19 commit 4bd850c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

chp17_strings/exercise_17_03_equals/exercise_17_03_equals.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Exercise 17-3: Find the duplicates in the following array of Strings.
66

77
/*
8-
String words = { "I" , "love" , "coffee" , "I" , "love" , "tea" } ;
8+
String words[] = { "I" , "love" , "coffee" , "I" , "love" , "tea" } ;
99
for (int i = 0; i < ______________; i ++ ) {
1010
for (int j = _; j < ______________; j ++ ) {
1111
if (___________________) {

0 commit comments

Comments
 (0)