TIL in Golang: Identifying Isograms & difference of squares
by @0xi4o
I did a couple of simple exercises on Exercism — identifying isograms and difference of squares.
After I finished them, I checked the community solutions and realized how brute-forced, inefficient my solution was. But that's the process of learning.
By checking community solutions, I learned about two methods available in the standard library: IsLetter and ContainsRune!
After I finished them, I checked the community solutions and realized how brute-forced, inefficient my solution was. But that's the process of learning.
By checking community solutions, I learned about two methods available in the standard library: IsLetter and ContainsRune!