Skip to content

Commit

Permalink
Merge pull request neetcode-gh#1160 from elcabalero/patch-1
Browse files Browse the repository at this point in the history
Solved compilation error
  • Loading branch information
Ahmad-A0 authored Sep 30, 2022
2 parents 24a320d + 5980dcb commit fc9d9ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/953-Alien-Dictionary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Solution {

// indegree make all char 0
for(auto word : words){
for(auto c : st){
for(auto c : word){
indegree[c]=0;
}
}
Expand Down

0 comments on commit fc9d9ea

Please sign in to comment.