Write a function that returns true if all characters in a string are identical and false otherwise.
true
false
is_identical("aaaaaa") ➞ true is_identical("aabaaa") ➞ false is_identical("ccccca") ➞ false is_identical("kk") ➞ true
N/A