-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathWordPattenSln.cs
26 lines (25 loc) · 967 Bytes
/
WordPattenSln.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HashTable.Lib
{
public class WordPattenSln
{
//pattern = "abba", str = "dog cat cat dog"
public bool WordPattern(string pattern, string str){
string[] words = str.Split(' ');
if (pattern.Length != words.Length) return false;
Dictionary<char, string> patternDict = new Dictionary<char, string>();
Dictionary<string, char> wordsDict = new Dictionary<string, char>();
for (int i = 0; i < pattern.Length; i++){
if(patternDict.ContainsKey(pattern[i]) && patternDict[pattern[i]]!=words[i] ||
wordsDict.ContainsKey(words[i]) && wordsDict[words[i]]!=pattern[i] )
return false;
patternDict[pattern[i]] = words[i];
wordsDict[words[i]] = pattern[i];
}
return true;
}
}
}