Tag: Two Pointers

Interview Questions

Reverse Vowels of a String

Problem Statement LeetCode#345 Given a string s, reverse only all the vowels in the string and return it. The vowels are ‘a’, ‘e’, ‘i’, ‘o’, and ‘u’, and they can appear in both lower and upper cases, more than once. Example 1: Input: s = “hello” Output: “holle” Example 2: Input: s = “leetcode” Output: “leotcede” Constraints: Golang Code Reverse Vowels […]

prakashsinghabody@gmail.com 
Coding Interview Patterns
Interview Questions

Coding Interview Patterns: 8 Must-Know Techniques for Success (2025 Guide)

Coding interview patterns are the key to cracking technical interviews at top tech companies. In this guide, you’ll quickly review 8 essential ones in 5 minutes. Summary:This blog is your 5-minute last-minute revision sheet covering 8 essential coding patterns that consistently appear in top tech interviews. From two pointers to topological sort, this is the […]

prakashsinghabody@gmail.com