@[email protected] to [email protected]English • 1 year agoThe last hopelemmy.worldimagemessage-square33fedilinkarrow-up1831
arrow-up1831imageThe last hopelemmy.world@[email protected] to [email protected]English • 1 year agomessage-square33fedilink
minus-squareEpheralinkfedilink6•1 year agoYep, my immediate thought was, how the hell would you know it works?
minus-square@[email protected]linkfedilink3•1 year agoThat program better be using an existing date library, because otherwise it’s most definitely wrong.
minus-square@[email protected]linkfedilink3•edit-21 year agopublic string GetDayOfWeek(DateTime date) => "saturday"; I also calculated it, his result checks out.
minus-square@[email protected]linkfedilink4•1 year 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" }; }
minus-square@[email protected]cakelinkfedilink3•1 year agoBro probably to account for leap Thursday’s. We have one every ~28k years to keep in alignment with the true solar week.
minus-squaredch82linkfedilink1•1 year agoTook me longer than it should have to realise this was a joke.
Yep, my immediate thought was, how the hell would you know it works?
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:
Bro probably to account for leap Thursday’s. We have one every ~28k years to keep in alignment with the true solar week.
Took me longer than it should have to realise this was a joke.