id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

orion.a.smith@gmail.com hcs-strings > apcsaStringsFirstOccurrence
prev  |  next  |  chance

Given a text and a search term (both Strings), find the index where the search term occurs within the text. Return -1 if not found under these conditions.


apcsaStringsFirstOccurrence("s", "s") → 0
apcsaStringsFirstOccurrence("s", "b") → -1
apcsaStringsFirstOccurrence("The quick brown fox jumps over the lazy dog", "quick") → 4

...Save, Compile, Run (ctrl-enter)

public int apcsaStringsFirstOccurrence(String text, String searchTerm) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 110 Post-solution available

Copyright Nick Parlante 2017 - privacy