Q:

Kotlin program to determine if a string has all unique characters

belongs to collection: Kotlin String Programs

0

Given a string, we have to check whether it has all unique characters or not.

Example:

    Input:
    string = "includehelp"

    Output:
    false

    Input:
    string = "abcd"

    Output:
    true

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program to determine if a string has all unique characters in Kotlin

package com.includehelp.basic

import java.util.*
import kotlin.collections.HashSet

//Main Function, entry Point of Program
fun main(args: Array<String>) {

    //Input Stream
    val sc = Scanner(System.`in`)

    //input April20.string value
    println("Input String : ")
    val str: String = sc.nextLine()


    val charHashSet: HashSet<Char> = HashSet<Char>()
    var result= false

    // iterate loop to check unique char in string
    for(i in str.indices){
        result = charHashSet.add(str[i])
        if(!result) {
            break
        }
    }
    println("Unique Char  : $result")
}

Output

Run 1:
Input String :
includehelp
Unique Char  : false
---
Run 2:
Input String :
abcd pqr
Unique Char  : true
---
Run 3:
Input String :
Hello world!
Unique Char  : false

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Kotlin program to find first non-repeating charact... >>
<< Kotlin program to count the number of words in a s...