Design Thinking in Embedded SystemsOne will surely be surprised when the topic of design thinking is raised in an Embedded Systems class, it is rare to expect anything other than the technical nitty-gritty of hardware and software design in an embedded systems class. At least I believ...Jul 22, 2023·4 min read
Fizz Buzz Multithreaded in C++Overview A multithreaded program contains two or more parts that can run concurrently. Each part of such a program is called a thread, and each thread defines a separate path of execution Thought Process The problem related to this task can be approa...Sep 26, 2022·2 min read
Sorting Characters By Frequency in C++Overview In this task breakdown, we will be looking at sorting characters in strings in order of magnitude of appearance. Most of the time, you have seen the task that involves sorting characters alphabetically in a string or an array, in this partic...Sep 25, 2022·2 min read
Print in Order in C++Overview Printing in order is another requirement in lots of programming tasks. If we look at this article from the perspective of what is called Concurrency in programming, Printing in order is a good example of concurrency implementation. Thought P...Sep 24, 2022·1 min read
Palindromes Using C++Overview Implementing algorithms to detect Palindromes is by far one of the most popular in the field of programming. If you are reading this article, the tendency that you already understand what palindromes are is high but to our friends that have ...Sep 23, 2022·2 min read
Removing Elements Using C++Overview Removing array elements is by far one of the most important requirements in many software and real-life applications ranging from information gathering, and research analysis to AI/ML and IoT applications. In this coding challenge put togeth...Sep 22, 2022·2 min read
Removing Duplicate from Sorted Array using C++Overview Removing duplicates is by far one of the most important requirements in many software and real-life applications ranging from information gathering, and research analysis to AI/ML and IoT applications. In this coding challenge put together I...Sep 21, 2022·2 min read