wes d2a2ba9e15 first commit 4 years ago
..
README.md d2a2ba9e15 first commit 4 years ago
code.cpp d2a2ba9e15 first commit 4 years ago
unitTest.cpp d2a2ba9e15 first commit 4 years ago

README.md

Recursion: Length of a String

by Matt tags: recursion, strings, language_fundamentals

Summary

Write a function that returns the length of a string. Make your function recursive. Examples length("apple") ➞ 5 length("make") ➞ 4 length("a") ➞ 1 length("") ➞ 0 Notes Check the Resources tab for info on recursion.

Instructions

Write a function that returns the length of a string. Make your function recursive.

Examples

length("apple") ➞ 5

length("make") ➞ 4

length("a") ➞ 1

length("") ➞ 0

Notes

Check the Resources tab for info on recursion.