• + 0 comments

    My solution in kotlin covering all the test cases

    fun pangrams(s: String): String {
        
        
        val target = "abcdefghijklmnopqrstuvwxyz"
        val input = s.lowercase()
        
        for(ch in target) {
            if(!input.contains(ch)) 
                return "not pangram"
        }
        
        return "pangram"
    
    }