LeetCode - Problems - Algorithms - 202. Happy Number LeetCode - The World's Leading Online Programming Learning Platform Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com My Solution (C#) static public bool IsHappy(int n) { List tracks = new List(); while (!tracks.Contains(n)) { tracks.Add(n)..