Day 06 of 100 days of code: Completed all patterns questions
Completed the 22 pattern questions from the Strivers list. It helped me understand loops better as well as explore strings.
I had the most fun solving this question
void alphaTriangle(int n) {
for(int i = 0; i<n; i++){
int start = 65+(n...
caroldsillva.hashnode.dev1 min read