We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f2ac6b commit 0bf84b5Copy full SHA for 0bf84b5
exercises/practice/bob/.approaches/method-based/snippet.txt
@@ -0,0 +1,8 @@
1
+if (isSilent(inputTrimmed))
2
+ return "Fine. Be that way!";
3
+if (isYelling(inputTrimmed) && isAsking(inputTrimmed))
4
+ return "Calm down, I know what I'm doing!";
5
+if (isYelling(inputTrimmed))
6
+ return "Whoa, chill out!";
7
+if (isAsking(inputTrimmed))
8
+ return "Sure.";
0 commit comments