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

 

String-2 > prefixAgain
prev  |  next  |  chance

Given a string, consider the prefix string made of the first N chars of the string. Does that prefix string appear somewhere else in the string? Assume that the string is not empty and that N is in the range 1..str.length().


prefixAgain("abXYabc", 1) → true
prefixAgain("abXYabc", 2) → true
prefixAgain("abXYabc", 3) → false

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

public boolean prefixAgain(String str, int n) { }

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: 239.0

Copyright Nick Parlante 2017 - privacy