Leetcode 59. How To Go Around A Square Matrix In Spiral Order
A simple example of using C++ switch
Jan 31, 20242 min read533

Search for a command to run...
Articles tagged with #coding
A simple example of using C++ switch

An example of using a sliding window approach and an unordered map to track character positions

A C++ solution to Leetcode 804. Unique Morse Code Words using mapping and std::unordered_set to keep track of unique representations.

A step-by-step approach to effectively solve coding challenges, prepare for coding interviews, and land dev jobs.

An example of dynamic programming

Problem statement A string s is called good if there are no two different characters in s that have the same frequency. Given a string s, return the minimum number of characters you need to delete to make s good. The frequency of a character in a str...
