Posts

Showing posts from March, 2025

Coding_Daily

  Coding Daily 1️⃣ Sum of Digits (Recursive) Question: Write a recursive function to find the sum of digits of a given number. Example: Input: 123   Output: 6  // (1 + 2 + 3)