@[email protected] to [email protected]English • 9 months agoThe last hopelemmy.worldimagemessage-square33fedilinkarrow-up1831
arrow-up1831imageThe last hopelemmy.world@[email protected] to [email protected]English • 9 months agomessage-square33fedilink
minus-square@[email protected]linkfedilink3•9 months agoThat program better be using an existing date library, because otherwise it’s most definitely wrong.
minus-square@[email protected]linkfedilink3•edit-29 months agopublic string GetDayOfWeek(DateTime date) => "saturday"; I also calculated it, his result checks out.
minus-square@[email protected]linkfedilink4•9 months agoDon’t be ridiculous, that would never pass QA. But this one will. Joy for years to come: public string GetDayOfWeek(DateTime date) { return ((date - new DateTime(1970, 1, 1)).Milliseconds / 86400000) % 7 switch { 0 => "Thursday", 1 => "Friday", 2 => "Saturday", 3 => "Sunday", 4 => "Monday" }; }
That program better be using an existing date library, because otherwise it’s most definitely wrong.
public string GetDayOfWeek(DateTime date) => "saturday";
I also calculated it, his result checks out.
Don’t be ridiculous, that would never pass QA.
But this one will. Joy for years to come: