Bob is a lackadaisical teenager. In conversation, his responses are very limited.
Bob answers 'Sure.' if you ask him a question, such as "How are you?".
He answers 'Whoa, chill out!' if you YELL AT HIM (in all capitals).
He answers 'Calm down, I know what I'm doing!' if you yell a question at him.
He says 'Fine. Be that way!' if you address him without actually saying anything.
He answers 'Whatever.' to anything else.
Bob's conversational partner is a purist when it comes to written communication and always follows normal rules regarding sentence punctuation in English.
Make sure you have read the Installing and Running the Tests pages for C++ on exercism.io. This covers the basic information on setting up the development environment expected by the exercises.
Get the first test compiling, linking and passing by following the three rules of test-driven development. Create just enough structure by declaring namespaces, functions, classes, etc., to satisfy any compiler errors and get the test to fail. Then write just enough code to get the test to pass. Once you've done that, uncomment the next test by moving the following line past the next test.
#if defined(EXERCISM_RUN_ALL_TESTS)
This may result in compile errors as new constructs may be invoked that you haven't yet declared or defined. Again, fix the compile errors minimally to get a failing test, then change the code minimally to pass the test, refactor your implementation for readability and expressiveness and then go on to the next test.
Try to use standard C++11 facilities in preference to writing your own low-level algorithms or facilities by hand. CppReference is a wiki reference to the C++ language and standard library. If you are new to C++, but have programmed in C, beware of C traps and pitfalls.
Inspired by the 'Deaf Grandma' exercise in Chris Pine's Learn to Program tutorial. http://pine.fm/LearnToProgram/?Chapter=06
It's possible to submit an incomplete solution so you can see how others have completed the exercise.
#include "bob.h"
#include "test/catch.hpp"
// Bob exercise test case data version 1.4.0
TEST_CASE("stating_something")
{
REQUIRE("Whatever." == bob::hey("Tom-ay-to, tom-aaaah-to."));
}
#if defined(EXERCISM_RUN_ALL_TESTS)
TEST_CASE("shouting")
{
REQUIRE("Whoa, chill out!" == bob::hey("WATCH OUT!"));
}
TEST_CASE("shouting_gibberish")
{
REQUIRE("Whoa, chill out!" == bob::hey("FCECDFCAAB"));
}
TEST_CASE("asking_a_question")
{
REQUIRE("Sure." == bob::hey("Does this cryogenic chamber make me look fat?"));
}
TEST_CASE("asking_a_numeric_question")
{
REQUIRE("Sure." == bob::hey("You are, what, like 15?"));
}
TEST_CASE("asking_gibberish")
{
REQUIRE("Sure." == bob::hey("fffbbcbeab?"));
}
TEST_CASE("talking_forcefully")
{
REQUIRE("Whatever." == bob::hey("Let's go make out behind the gym!"));
}
TEST_CASE("using_acronyms_in_regular_speech")
{
REQUIRE("Whatever." == bob::hey("It's OK if you don't want to go to the DMV."));
}
TEST_CASE("forceful_questions")
{
REQUIRE("Calm down, I know what I'm doing!" == bob::hey("WHAT THE HELL WERE YOU THINKING?"));
}
TEST_CASE("shouting_numbers")
{
REQUIRE("Whoa, chill out!" == bob::hey("1, 2, 3 GO!"));
}
TEST_CASE("no_letters")
{
REQUIRE("Whatever." == bob::hey("1, 2, 3"));
}
TEST_CASE("question_with_no_letters")
{
REQUIRE("Sure." == bob::hey("4?"));
}
TEST_CASE("shouting_with_special_characters")
{
REQUIRE("Whoa, chill out!" == bob::hey("ZOMG THE %^*@#$(*^ ZOMBIES ARE COMING!!11!!1!"));
}
TEST_CASE("shouting_with_no_exclamation_mark")
{
REQUIRE("Whoa, chill out!" == bob::hey("I HATE THE DMV"));
}
TEST_CASE("statement_containing_question_mark")
{
REQUIRE("Whatever." == bob::hey("Ending with ? means a question."));
}
TEST_CASE("non_letters_with_question")
{
REQUIRE("Sure." == bob::hey(":) ?"));
}
TEST_CASE("prattling_on")
{
REQUIRE("Sure." == bob::hey("Wait! Hang on. Are you going to be OK?"));
}
TEST_CASE("silence")
{
REQUIRE("Fine. Be that way!" == bob::hey(""));
}
TEST_CASE("prolonged_silence")
{
REQUIRE("Fine. Be that way!" == bob::hey(" "));
}
TEST_CASE("alternate_silence")
{
REQUIRE("Fine. Be that way!" == bob::hey("\t\t\t\t\t\t\t\t\t\t"));
}
TEST_CASE("multiple_line_question")
{
REQUIRE("Whatever." == bob::hey("\nDoes this cryogenic chamber make me look fat?\nNo."));
}
TEST_CASE("starting_with_whitespace")
{
REQUIRE("Whatever." == bob::hey(" hmmmmmmm..."));
}
TEST_CASE("ending_with_whitespace")
{
REQUIRE("Sure." == bob::hey("Okay if like my spacebar quite a bit? "));
}
TEST_CASE("other_whitespace")
{
REQUIRE("Fine. Be that way!" == bob::hey("\n\r \t"));
}
TEST_CASE("non_question_ending_with_whitespace")
{
REQUIRE("Whatever." == bob::hey("This is a statement ending with whitespace "));
}
#endif
#include "bob.h"
using namespace std;
namespace bob {
bool is_question(const string s) {
bool rval = *(s.end()-1) == '?';
return rval;
}
bool contains_letter(const string s) {
for(auto elt : s) if (isalpha(elt)) return true;
return false;
}
bool is_all_caps(const string s) {
string t;
t.assign(s);
transform(t.begin(), t.end(), t.begin(), ::toupper);
return (s == t && contains_letter(s));
}
string hey(string s) {
const string response[] = {"Sure.", // 0
"Whoa, chill out!", // 1
"Calm down, I know what I'm doing!", // 2
"Fine. Be that way!", // 3
"Whatever."}; // 4
s.erase(remove_if(s.begin(), s.end(), ::isspace), s.end());
if (s.length() == 0) return response[3];
if (is_all_caps(s) && is_question(s)) return response[2];
if (is_question(s)) return response[0];
if (is_all_caps(s)) return response[1];
return response[4];
}
} // namespace bob
#if !defined(BOB_H)
#define BOB_H
#include <string>
#include <algorithm>
namespace bob {
std::string hey(const std::string);
} // namespace bob
#endif // BOB_H
A huge amount can be learned from reading other people’s code. This is why we wanted to give exercism users the option of making their solutions public.
Here are some questions to help you reflect on this solution and learn the most from it.
Level up your programming skills with 3,122 exercises across 52 languages, and insightful discussion with our volunteer team of welcoming mentors. Exercism is 100% free forever.
Sign up Learn More
Community comments