From fd2d84185163bd406859b4d578a8b53c1df76d1e Mon Sep 17 00:00:00 2001 From: Hamza nazir <138714431+hamzanazir27@users.noreply.github.com> Date: Tue, 29 Jul 2025 10:10:01 +0500 Subject: [PATCH] added link --- .../Recursion/Check if a Number is a Palindrome/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Level 1/Week 04/Recursion/Check if a Number is a Palindrome/README.md b/Level 1/Week 04/Recursion/Check if a Number is a Palindrome/README.md index b6ac649..7ba3bfc 100644 --- a/Level 1/Week 04/Recursion/Check if a Number is a Palindrome/README.md +++ b/Level 1/Week 04/Recursion/Check if a Number is a Palindrome/README.md @@ -1,4 +1,5 @@ -## πŸ“˜ Check if a Number is a Palindrome +## πŸ“˜Check if a Number is a Palindrome +link: https://leetcode.com/problems/palindrome-number/ ### πŸ“ Description Check whether a number is a **palindrome** using recursion. @@ -16,4 +17,4 @@ Input: 121 Output: true Input: 123 -Output: false \ No newline at end of file +Output: false