Please explain, I just do not understand
Can you explain this code to me. I can’t understand how, when I type in the words hello, “Deja Vu” is displayed. It is not clear what each "for" line is responsible for. Можно и на русском ответить. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { string vvod = Convert.ToString(Console.ReadLine()); string result = "Unique"; for (int i = 0; i < vvod.Length; i++) { for (int j = 1; j < vvod.Length - i; j++) { if(vvod[i] == vvod[j + i]) { result = "Deja Vu"; } } } Console.Write(result); } } }