MCPcopy Create free account
hub / github.com/Vishruth-S/CompetitiveCode / DayOfWeek

Enum DayOfWeek

project_euler_problems/CountingSundays/solution.cpp:14–17  ·  view source on GitHub ↗

lets us use descriptive names for day of the week

Source from the content-addressed store, hash-verified

12
13// lets us use descriptive names for day of the week
14enum DayOfWeek
15{
16 Mon, Tues, Wed, Thurs, Fri, Sat, Sun
17};
18
19int main()
20{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected