Submission

Status:
P

Score: 100

User: PakinDioxide

Problemset: คาราเมล

Language: cpp

Time: 0.002 second

Submitted On: 2024-12-05 02:01:10

#include <bits/stdc++.h>

using namespace std;

bool isInCaramel(char c) {
    for (char i : "CaRaMeL") if (i == c) return 1;
    return 0;
}