Submission

Status:
-

Score: 0

User: iwannasleep

Problemset: คาราเมล

Language: cpp

Time: 0.002 second

Submitted On: 2024-11-11 01:09:46

#include "caramel.h"
bool isInCaramel(char c) {
    switch(c){
    	case 'C': 
    	case 'a':
    	case 'R':
		case 'M':
		case 'e':
		case 'L': return true; break;	
	} 
}