79321573

Date: 2025-01-01 12:23:48
Score: 1.5
Natty:
Report link

You just need to fix your 'for' loop condition

use for (int j = 0; j < 26; j++)

instead for (int j = 0; j < 25; j++)

your code is incorrect because it doesn't check 'z' letter

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sepehr Yavarzadeh