Search:

Type: Posts; User: jocdrew21

Search: Search took 0.12 seconds.

  1. Re: comparing string but the '/0' keeps being counted

    import java.util.HashSet;
    import java.util.Set;

    public class UniqueChecker
    {

    private String sentence = "This will be compard";
    private Set<String> checker;
    private String isUnique =...
  2. Re: comparing string but the '/0' keeps being counted

    import java.util.Set;

    public class UniqueChecker
    {

    private String sentence = "This will be compard";
    private Set<String> checker;
    private String isUnique = "The sentence is unique";...
  3. comparing string but the '/0' keeps being counted

    Ok I am trying to compare a string to see if all characters are unique. If there is a library for this or a better way to approach this do tell. However I find it important to understand what is...
Results 1 to 3 of 3