Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Why deleted unsupported tag or markdown? like codeBlock #496

Open
hmshohrab opened this issue Jan 16, 2025 · 0 comments
Open

Why deleted unsupported tag or markdown? like codeBlock #496

hmshohrab opened this issue Jan 16, 2025 · 0 comments

Comments

@hmshohrab
Copy link

Original text:

fun reverseString(input: String): String {
    // স্ট্রিংটি উল্টানোর জন্য একটি ভেরিয়েবল তৈরি করা হচ্ছে
    var reversed = ""

    // ইনপুট স্ট্রিংয়ের প্রতিটি অক্ষর উল্টে concatenation করা হচ্ছে
    for (i in input.length - 1 downTo 0) {
        reversed += input[i]
    }

    // উল্টানো স্ট্রিংটি রিটার্ন করা হচ্ছে
    return reversed
}

// উদাহরণ ব্যবহার
fun main() {
    val originalString = "বাংলা"
    val reversedString = reverseString(originalString)
    println("মূল স্ট্রিং: $originalString")
    println("উল্টানো স্ট্রিং: $reversedString")
}

এই ফাংশনটি একটি String ইনপুট নিয়ে সেটিকে উল্টিয়ে আবার String আকারে রিটার্ন করে। main ফাংশনে একটি উদাহরণ দেওয়া হয়েছে বুঝতে সাহায্যের জন্য।

#Rich editor provided below sample

এই ফাংশনটি একটি String ইনপুট নিয়ে সেটিকে উল্টিয়ে আবার String আকারে রিটার্ন করে। main ফাংশনে একটি উদাহরণ দেওয়া হয়েছে বুঝতে সাহায্যের জন্য।

@hmshohrab hmshohrab changed the title Why deleted unsupported tag? like(kotlin) Why deleted unsupported tag or markdown? like(kotlin) Jan 16, 2025
@hmshohrab hmshohrab changed the title Why deleted unsupported tag or markdown? like(kotlin) Why deleted unsupported tag or markdown? like codeBlock Jan 16, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant