LeetCode-Swift icon indicating copy to clipboard operation
LeetCode-Swift copied to clipboard

Alien Dictionary is failing for ["abc","ab"] test case

Open iHackSubhodip opened this issue 5 years ago • 0 comments

@soapyigu , Leetcode has added a new test case ["abc","ab"]. So the solution is failing

I have added this check inside initGraph method, now it's working.

if currentWord.count > nextWord.count && currentWord.starts(with: nextWord){ return ([:], [:]) }

My full solution is https://pastebin.com/f7RzLqfM

iHackSubhodip avatar May 10 '20 09:05 iHackSubhodip

Thanks. Seems the requirement from Leetcode has been changed. I just modified the solution and it works now.

soapyigu avatar Aug 31 '22 20:08 soapyigu