Here are stories and journeys we would like to share with our fellow engineers, from coding to life experience, and everything in between. We might learn from each other, or have some fun.
Software Engineering Concepts – Student Guide
This post is an illustrated explanation of Software Engineering Concepts and terminologies. It helps you to decide which areas you would like to specialize in. Table of Content MathematicsSystemsProgrammingNetworksData ScienceApplicationsArtificial intelligenceFor your consideration 1. Mathematics ...
Clean directories using recursion – code
Delete files older than n days and remove the empty directories after the files are deleted. This can be done using recursion. Recursion is a technique that a function calls itself. When the base condition ...
Sort squares of a sorted array in one pass
To sort squares of a sorted array, you don't want to use any sorting algorithms such as bubble sort. Because it takes O(nlogn) ~ O(n^2) time. Here we introduce a better way to sort in ...