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

 

abraskin@mbusd.org 2019_units1-4_practice > lenLongest
prev  |  next  |  chance

Given two strings, return the longest one followed by a dash and the number of characters it exceeds the other string's length by.


Return "Tie!" if they have the same length!

lenLongest("ABC", "123") → "Tie!"
lenLongest("ABC", "DEFG") → "DEFG-1"
lenLongest("ABCD", "EFG") → "ABCD-1"

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

public String lenLongest(String a, String b) { }

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

Copyright Nick Parlante 2017 - privacy