1 min read

Weekly Update - October 25, 2024

Weekly Update - October 25, 2024
Photo by Anna Shadricheva / Unsplash hi. I am random girl.

Novel


Miscellaneous

I did a free certification on c#, last Saturday. I didn't answer the second question, but I passed the first.

I felt bad, but got a certificate the next morning.

Looks like the first question was more important.

It feels better than getting certificates from beating 10 year olds in chess....

c# basic certificate from hacker rank

Trivia for those curious if list.count is faster, or list.Count().

Lists: Count vs Count()
Given a list, which method is preferred to determine the number of elements inside? var myList = new List<string>(); myList.Count myList.Count()