From 8c37389701a02ec3292a3bf3f11d4730ac892114 Mon Sep 17 00:00:00 2001 From: KushagraAgarwal525 <67466389+KushagraAgarwal525@users.noreply.github.com> Date: Mon, 28 Feb 2022 21:30:30 +0530 Subject: [PATCH] fix(curriculum): fixed incorrect exponent display (#45284) --- .../project-euler/problem-250-250250.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-250-250250.md b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-250-250250.md index 467e36022bd..762ba24a2bf 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-250-250250.md +++ b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-250-250250.md @@ -8,7 +8,7 @@ dashedName: problem-250-250250 # --description-- -Find the number of non-empty subsets of $\\{11, 22, 33, \ldots, {250250}^{250250}\\}$, the sum of whose elements is divisible by 250. Enter the rightmost 16 digits as your answer. +Find the number of non-empty subsets of $\\{{1}^{1}, {2}^{2}, {3}^{3}, \ldots, {250250}^{250250}\\}$, the sum of whose elements is divisible by 250. Enter the rightmost 16 digits as your answer. # --hints--