-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIs_Unique.cs
60 lines (55 loc) · 1.16 KB
/
Is_Unique.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using System;
namespace ConsoleApp19
{
class Program
{
public static void Main()
{
string str = "abcd10jk";
string str1 = "hello Harshl";
var t = Is_UniqueKeyWord(str);
var t1 = Is_UniqueKeyWord1(str1);
if (t == true)
{
Console.WriteLine("This string is has unique keyword");
}
else
{
Console.WriteLine("This string is has no unique keyword");
}
if (t1 == true)
{
Console.WriteLine("This string is has unique keyword");
}
else
{
Console.WriteLine("This string is has no unique keyword");
}
}
private static bool Is_UniqueKeyWord1(string str)
{
char[] ch = str.ToCharArray();
Array.Sort(ch);
for(int i=0;i<ch.Length-1;i++)
{
if (ch[i] != ch[i + 1])
continue;
else
return false;
}
return true;
}
private static bool Is_UniqueKeyWord(string str)
{
for(int i=0;i<str.Length;i++)
{
for (int j = i +1;j<str.Length;j++)
{
if (str[i] == str[j])
return false;
}
}
return true;
}
}
}