From f0278aa901fcf7f3c8d277a440bdb4c98aeb0065 Mon Sep 17 00:00:00 2001 From: Svetlana Isakova Date: Tue, 20 Jul 2021 13:08:49 +0200 Subject: [PATCH] Fixed the superscript font in the task description (markdown stopped working, used html) https://github.com/svtk/AtomicKotlinCourse/issues/23 --- Programming Basics/Number Types/Exercise 2/task.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Programming Basics/Number Types/Exercise 2/task.md b/Programming Basics/Number Types/Exercise 2/task.md index b7656832..91f3f27e 100644 --- a/Programming Basics/Number Types/Exercise 2/task.md +++ b/Programming Basics/Number Types/Exercise 2/task.md @@ -2,7 +2,7 @@ Check which of the following values can't be stored in an `Int` type: -- A million (10^6^) -- A billion (10^9^) -- A trillion (10^12^) -- A quintillion (10^18^) +- A million (106) +- A billion (109) +- A trillion (1012) +- A quintillion (1018)