Java String Manipulation : Comparing adjacent Characters in Java

前端 未结 12 756
陌清茗
陌清茗 2021-01-07 10:57

i have the following problem
Given a string, return a \"cleaned\" string where adjacent chars that are the same have been reduced to a single char. So \"yyzzza\"

12条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-07 11:30

    How about trying this one:

    public String stringClean(String string){
        char sc[] = string.toCharArray();
    
        for(int i =0;i

提交回复
热议问题