Category: how-to articles

  • How to view hidden files on Windows

    What are hidden files Hidden files are special type of file, that usually not visible if you go to file explore. To view those files, there are several ways you can do it on Windows.   Find the File Explorer on Windows 1. You can find the File Explorer easily from start menu: 2. From…

  • LeetCode 337: House Robber III (my recursion solution)

    Python Solution:   Time Complexity: O(n) Space Complexity: O(n)