I'm going through the language introduction course and I'm stuck on question 6.13. It asks, "Make a list line plot of the length of the sequence of digits for each of the first 100 squares."
I started by doing a Table to make sure I was getting the right data:
Table[Length[IntegerDigits[k^2]], {k, 100}]
But when I swap Table for ListLinePlot...that's where I'm having issues and the documentation is so obtuse. I changed it to what's below but it errors out and I can't seem to figure out the error (I added the spaces to make it more readable here).
ListLinePlot [ { [Length[IntegerDigits[k^2] ], {k, 100} ], 100} ]
Thanks in advance!