Set up Gitlab instance with Docker ComposeSet up Gitlab instance with Docker ComposeJul 19, 2025·3 min read
Grouped AnagramsQuestion Leetcode link -> https://leetcode.com/problems/group-anagrams/description/ Given an array of strings strs, group the anagrams together. You can return the answer in any order. Example 1: Input: strs = ["eat","tea","tan","ate","nat","bat"] ...Nov 14, 2024·2 min read
Valid AnagramThis article will highlight two approaches to this problem. Question Leetcode link -> https://leetcode.com/problems/valid-anagram/description/ Given two strings s and t, return true if t is an anagram of s, and false otherwise. An Anagram is a word o...Nov 7, 2024·2 min read
Two sumThis article will highlight two approaches the brute force and the efficient approach Question Leetcode link -> https://leetcode.com/problems/two-sum/description/ Given an array of integers nums and an integer target, return indices of the two number...Oct 31, 2024·2 min read
Part 2: Scanning for Bluetooth devices on AndroidPart 1: https://bit.ly/androidbluetoothtutorial The Advertising part was covered in part 1, in this, Scanning is handled. As stated, there are two modes Bluetooth Connected mode(bilateral communication) and connectionless(unilateral communication). T...May 1, 2023·2 min read
Working with Bluetooth(BLE) on AndroidGetting Started Recently finalized a project on an Android application using Bluetooth for communication. I might as well share what I learned on the way. Working with Bluetooth on Android was not the easiest for anyone doing the same you might find ...Apr 30, 2023·3 min read