Submission
Status:
P
Score: 100
User: iwannasleep
Problemset: คาราเมล
Language: cpp
Time: 0.002 second
Submitted On: 2024-11-11 01:10:42
#include "caramel.h"
bool isInCaramel(char c) {
switch(c){
case 'C':
case 'a':
case 'R':
case 'M':
case 'e':
case 'L': return true; break;
default: return false; break;
}
}