Feb 15 · 4 min read · title: "Learn 6 String Operations in Python — Step by Step" published: false tags: python, beginners, strings, tutorial description: "Learn about 6 String Operations in Python — a beginner-friendly guide with examples." series: "Python for Beginners"...
Join discussionDec 31, 2025 · 7 min read · Hi everyone! this is Jimmy , and this is the seventh article in my series “Breaking Things with Go.” In this series, I document my journey through Jon Bodner’s Second Edition: Learning Go – An Idiomatic Approach to Real-World Go Programming and explo...
Join discussion
Dec 24, 2025 · 4 min read · Hi everyone! this is Jimmy , and this is a short article in my series “Breaking Things with Go.” In this series, I document my journey through Jon Bodner’s Second Edition: Learning Go – An Idiomatic Approach to Real-World Go Programming and explore h...
Join discussion
Dec 23, 2025 · 4 min read · QUESTION: A phrase is a palindrome if, after converting all uppercase letters into lowercase letters and removing all non-alphanumeric characters, it reads the same forward and backward. Alphanumeric characters include letters and numbers. Given a st...
Join discussion
Dec 10, 2025 · 2 min read · Problem: https://leetcode.com/problems/rotate-string/description/ Code: # OPTIMISED class Solution: def rotateString(self, s: str, goal: str) -> bool: return len(s)==len(goal) and goal in (s+s) # BELOW TWO SOLUTIONS NOT (O(N^2)) # class ...
Join discussion