Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

is_isogram

def is_isogram(string):
   for i in string:
       if string.count(i) > 1:
           return False
   return True
Comment

Is IsoGram

function isIsogram(str){
  return new Set(str.toUpperCase()).size == str.length;
}
Comment

PREVIOUS NEXT
Code Example
Python :: queue in python 
Python :: what are args and kwargs in python 
Python :: python check None 
Python :: python os.remove permissionerror winerror 5 access is denied 
Python :: groupby and list 
Python :: seaborn modificar o tamanho dos graficos 
Python :: python single line function 
Python :: get column or row of matrix array numpy python 
Python :: get first letter of each word in string python 
Python :: qt set focus 
Python :: python ascii to string 
Python :: pandas get highest values row 
Python :: dockerfile to run python script 
Python :: python how to raise an exception 
Python :: decision tree classifier python code for visualization 
Python :: python qr decomposition 
Python :: reply to a message discord.py 
Python :: changing names of column pandas 
Python :: Python Changing a Tuple 
Python :: remove columns that contain string pandas 
Python :: numpy randomly swap lines 
Python :: pandas read csv file 
Python :: solve linear system python 
Python :: to_frame pandas 
Python :: groupby get last group 
Python :: flask abort 
Python :: {% load humanise %} 
Python :: python form html 
Python :: Socket Programming Server Side 
Python :: filter lambda python 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =