Skip to content

Commit 870198f

Browse files
committed
Replaced: judge.softuni.bg -> judge.softuni.org
1 parent f2472da commit 870198f

File tree

146 files changed

+174
-174
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+174
-174
lines changed

Diff for: Content/Chapter-1-first-steps-in-programming/exercises-first-steps-in-coding/expression.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ Start the program with [**Ctrl+F5**] and check if the result is the same as the
2020

2121
## Testing in the Judge System
2222

23-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/503#1](https://judge.softuni.bg/Contests/Practice/Index/503#1).
23+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/503#1](https://judge.softuni.org/Contests/Practice/Index/503#1).
2424

2525
![](/assets/chapter-1-images/02.Expression-03.png)

Diff for: Content/Chapter-1-first-steps-in-programming/exercises-first-steps-in-coding/numbers-1-to-20.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Inside the `static void Main()` method write 20 commands `Console.WriteLine(…)
1919

2020
## Testing in the Judge System
2121

22-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/503\#2](https://judge.softuni.bg/Contests/Practice/Index/503#2).
22+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/503\#2](https://judge.softuni.org/Contests/Practice/Index/503#2).
2323

2424
Now think whether we can write the program **a smarter way**, so we don't repeat the same command 20 times. Seek out information on the Internet about "[**for loop C\#**](https://www.google.com/search?q=for+loop+C%23&oq=for+loop+C%23)".
2525

Diff for: Content/Chapter-1-first-steps-in-programming/exercises-first-steps-in-coding/rectangle-area.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ Test your solution with a few examples. You have to get an output, similar to th
3030

3131
## Testing in the Judge System
3232

33-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/503\#4](https://judge.softuni.bg/Contests/Practice/Index/503#4).
33+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/503\#4](https://judge.softuni.org/Contests/Practice/Index/503#4).
3434

Diff for: Content/Chapter-1-first-steps-in-programming/exercises-first-steps-in-coding/square-of-stars.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Finish the program above, so that it prints a square, made out of stars. It migh
2020

2121
## Testing in the Judge System
2222

23-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/503#5](https://judge.softuni.bg/Contests/Practice/Index/503#5).
23+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/503#5](https://judge.softuni.org/Contests/Practice/Index/503#5).

Diff for: Content/Chapter-1-first-steps-in-programming/exercises-first-steps-in-coding/triangle-of-stars.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Console.WriteLine("**");
2727

2828
## Testing in the Judge System
2929

30-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/503\#3](https://judge.softuni.bg/Contests/Practice/Index/503#3).
30+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/503\#3](https://judge.softuni.org/Contests/Practice/Index/503#3).
3131

3232
Try to **improve your solution**, so that it doesn't have many repeating commands. Could it be done with a `for` loop? Did you find a smart solution \(for example with a loop\) of the previous task? With this task you can also use something similar, but a bit more complex \(two loops, one inside the other\). If you don't succeed, there is no problem, we will be learning loops in a few chapters and you will be reminded of this task then.
3333

Diff for: Content/Chapter-1-first-steps-in-programming/how-to-write-console-app/example-creating-a-console-application.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ The message "**Press any key to continue . . .**" is displayed additionally on t
5151

5252
## Testing the Program in the Judge System
5353

54-
Testing of the problems in this book is automated and is done through the Internet, using the **Judge System**: [https://judge.softuni.bg](https://judge.softuni.bg) website. The evaluation of the tasks is done immediately by the system. Each task goes through a sequence of tests, as every successfully passed test gives the points assigned for it. The tests that are applied to the tasks are hidden.
54+
Testing of the problems in this book is automated and is done through the Internet, using the **Judge System**: [https://judge.softuni.org](https://judge.softuni.org) website. The evaluation of the tasks is done immediately by the system. Each task goes through a sequence of tests, as every successfully passed test gives the points assigned for it. The tests that are applied to the tasks are hidden.
5555

56-
We can test the above program here: [https://judge.softuni.bg/Contests/Practice/Index/503\#0](https://judge.softuni.bg/Contests/Practice/Index/503#0). We place the source code from the program in the black field and we choose **C\# code**, the way it is shown:
56+
We can test the above program here: [https://judge.softuni.org/Contests/Practice/Index/503\#0](https://judge.softuni.org/Contests/Practice/Index/503#0). We place the source code from the program in the black field and we choose **C\# code**, the way it is shown:
5757

5858
![](/assets/chapter-1-images/01.Hello-csharp-06.png)
5959

Diff for: Content/Chapter-10-methods/exercises-methods/hello-name.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ Define a method **`PrintName(string name)`** and implement it, after which read
1414

1515
## Testing in the Judge System
1616

17-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594#7](https://judge.softuni.bg/Contests/Practice/Index/594#7).
17+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594#7](https://judge.softuni.org/Contests/Practice/Index/594#7).

Diff for: Content/Chapter-10-methods/exercises-methods/integer-to-base.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ static string IntegerToBase(int number, int toBase) {
3030

3131
## Testing in the Judge System
3232

33-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594#11](https://judge.softuni.bg/Contests/Practice/Index/594#11).
33+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594#11](https://judge.softuni.org/Contests/Practice/Index/594#11).

Diff for: Content/Chapter-10-methods/exercises-methods/min-method.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ var min = GetMin(GetMin(num1, num2), num3);
1818

1919
## Testing in the Judge System
2020

21-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594#8](https://judge.softuni.bg/Contests/Practice/Index/594#8).
21+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594#8](https://judge.softuni.org/Contests/Practice/Index/594#8).

Diff for: Content/Chapter-10-methods/exercises-methods/notifications.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ In **`ReadAndProcessMessage()`** read the type of message from the console and a
2525

2626
## Testing in the Judge System
2727

28-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594#12](https://judge.softuni.bg/Contests/Practice/Index/594#12).
28+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594#12](https://judge.softuni.org/Contests/Practice/Index/594#12).

Diff for: Content/Chapter-10-methods/exercises-methods/nth-digit.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ In order to do the algorithm use a **`while`** loop, until the given number equa
1414

1515
## Testing in the Judge System
1616

17-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594#10](https://judge.softuni.bg/Contests/Practice/Index/594#10).
17+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594#10](https://judge.softuni.org/Contests/Practice/Index/594#10).

Diff for: Content/Chapter-10-methods/exercises-methods/numbers-to-words/numbers-to-words.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ The third special case is when the number formed by the last two digits of the i
2929

3030
## Testing in the Judge System
3131

32-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594\#13](https://judge.softuni.bg/Contests/Practice/Index/594#13).
32+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594\#13](https://judge.softuni.org/Contests/Practice/Index/594#13).

Diff for: Content/Chapter-10-methods/exercises-methods/string-encryption/string-encryption.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ In order to find the first and the last digit of the ASCII code, we will use the
4242

4343
## Testing in the Judge System
4444

45-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594#14](https://judge.softuni.bg/Contests/Practice/Index/594#14).
45+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594#14](https://judge.softuni.org/Contests/Practice/Index/594#14).

Diff for: Content/Chapter-10-methods/exercises-methods/string-repeater.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ Keep in mind that in C# concatenating strings in loops leads to bad productivity
1818

1919
## Testing in the Judge System
2020

21-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594#9](https://judge.softuni.bg/Contests/Practice/Index/594#9).
21+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594#9](https://judge.softuni.org/Contests/Practice/Index/594#9).

Diff for: Content/Chapter-10-methods/methods-overloading/methods-overloading.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ The last step is to read the input data, to use the appropriate variables and to
5858

5959
### Testing in the Judge System
6060

61-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594#6](https://judge.softuni.bg/Contests/Practice/Index/594#6).
61+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594#6](https://judge.softuni.org/Contests/Practice/Index/594#6).

Diff for: Content/Chapter-10-methods/methods-with-parameters/method-with-params.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The next step is to read the input number and to call the new method from the bo
4646

4747
### Testing in the Judge System
4848

49-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594#1](https://judge.softuni.bg/Contests/Practice/Index/594#1).
49+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594#1](https://judge.softuni.org/Contests/Practice/Index/594#1).
5050

5151
## Optional Parameters
5252

@@ -92,7 +92,7 @@ In the end we print **the lower part** of the triangle, but this time the loop s
9292

9393
### Testing in the Judge System
9494

95-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594#2](https://judge.softuni.bg/Contests/Practice/Index/594#2).
95+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594#2](https://judge.softuni.org/Contests/Practice/Index/594#2).
9696

9797
## Example: Draw a Filled Square
9898

@@ -120,4 +120,4 @@ Finally, call the methods in the **`Main()`** method of the program in order to
120120

121121
### Testing in the Judge System
122122

123-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594#3](https://judge.softuni.bg/Contests/Practice/Index/594#3).
123+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594#3](https://judge.softuni.org/Contests/Practice/Index/594#3).

Diff for: Content/Chapter-10-methods/return-result-from-method/return-result-from-method.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ The next step is to **call the new** method from the **`Main()`** method and to
8484

8585
### Testing in the Judge System
8686

87-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594#4](https://judge.softuni.bg/Contests/Practice/Index/594#4).
87+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594#4](https://judge.softuni.org/Contests/Practice/Index/594#4).
8888

8989
## Example: Math Power
9090

@@ -106,4 +106,4 @@ After we have done the calculations, we have to only print the result in the **`
106106

107107
### Testing in the Judge System
108108

109-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/594#5](https://judge.softuni.bg/Contests/Practice/Index/594#5).
109+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/594#5](https://judge.softuni.org/Contests/Practice/Index/594#5).

Diff for: Content/Chapter-10-methods/what-method-is/what-method-is.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,4 @@ In the end we'll **call** the **`PrintReceipt`** method from the body of the **`
117117

118118
### Testing in the Judge System
119119

120-
The program with five methods that are call from one another is ready and we can **run and test it**, after which we can send it for testing in the judge system: [https://judge.softuni.bg/Contests/Practice/Index/594#0](https://judge.softuni.bg/Contests/Practice/Index/594#0).
120+
The program with five methods that are call from one another is ready and we can **run and test it**, after which we can send it for testing in the judge system: [https://judge.softuni.org/Contests/Practice/Index/594#0](https://judge.softuni.org/Contests/Practice/Index/594#0).

Diff for: Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/1000-days-after-birth/1000-days-after-birth.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ Write a program that enters **a birth date** in format `dd-MM-yyyy` and calculat
1919

2020
## Testing in the Judge System
2121

22-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504\#12](https://judge.softuni.bg/Contests/Practice/Index/504#12).
22+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504\#12](https://judge.softuni.org/Contests/Practice/Index/504#12).

Diff for: Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/celsius-to-fahrenheit/celsius-to-fahrenheit.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Write a program that reads **degrees on Celsius scale** \(°C\) and converts the
1313

1414
## Testing in the Judge System
1515

16-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504\#8](https://judge.softuni.bg/Contests/Practice/Index/504#8).
16+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504\#8](https://judge.softuni.org/Contests/Practice/Index/504#8).

Diff for: Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/circle-area-and-perimeter/circle-area-and-perimeter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ For the calculations you may use the following formulas:
2121

2222
## Testing in the Judge System
2323

24-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504#5](https://judge.softuni.bg/Contests/Practice/Index/504#5).
24+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504#5](https://judge.softuni.org/Contests/Practice/Index/504#5).

Diff for: Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/concatenate-data/concatenate-data.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ Next, the solution should be tested locally using \[**Ctrl+F5**\] and by enterin
1818

1919
## Testing in the Judge System
2020

21-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504\#3](https://judge.softuni.bg/Contests/Practice/Index/504#3).
21+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504\#3](https://judge.softuni.org/Contests/Practice/Index/504#3).
2222

Diff for: Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/currency-converter/currency-converter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ Write a program for **conversion of money from one currency into another**. It h
1919

2020
## Testing in the Judge System
2121

22-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504#11](https://judge.softuni.bg/Contests/Practice/Index/504#11).
22+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504#11](https://judge.softuni.org/Contests/Practice/Index/504#11).

Diff for: Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/greeting-by-name/greeting-by-name.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ First, we create a **new C\# console project** with name “Greeting” in the s
1818

1919
## Testing in the Judge System
2020

21-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504\#2](https://judge.softuni.bg/Contests/Practice/Index/504#2).
21+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504\#2](https://judge.softuni.org/Contests/Practice/Index/504#2).
2222

Diff for: Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/inches-to-centimeters/inches-to-centimeters.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ It is recommended to **change the settings of your computer** to use a **decimal
7979

8080
## Testing in the Judge System
8181

82-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504#1](https://judge.softuni.bg/Contests/Practice/Index/504#1).
82+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504#1](https://judge.softuni.org/Contests/Practice/Index/504#1).
8383

8484
The solution should be accepted as a completely correct one:
8585

Diff for: Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/radians-to-degrees/radians-to-degrees.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Write a program, that reads **an angle in** [**radians**](https://en.wikipedia.o
1313

1414
## Testing in the Judge System
1515

16-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504\#9](https://judge.softuni.bg/Contests/Practice/Index/504#9).
16+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504\#9](https://judge.softuni.org/Contests/Practice/Index/504#9).

Diff for: Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/rectangle-area/rectangle-area.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ Watch the video lesson about calculating rectangle area: https://youtu.be/IHb_Tz
1818

1919
## Testing in the Judge System
2020

21-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504#6](https://judge.softuni.bg/Contests/Practice/Index/504#6).
21+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504#6](https://judge.softuni.org/Contests/Practice/Index/504#6).

Diff for: Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/square-area/square-area.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The code inputs an integer through `a = int.Parse(Console.ReadLine())`, afterwar
2222

2323
## Testing in the Judge System
2424

25-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504\#0](https://judge.softuni.bg/Contests/Practice/Index/504#0). You have to get 100 points \(completely correct solution\):
25+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504\#0](https://judge.softuni.org/Contests/Practice/Index/504#0). You have to get 100 points \(completely correct solution\):
2626

2727
![](/assets/chapter-2-images/01.Square-area-05.png)
2828

Diff for: Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/trapezoid-area/trapezoid-area.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ The code in the picture is purposely blurred, in order for you to give it a thou
1818

1919
## Testing in the Judge System
2020

21-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504\#4](https://judge.softuni.bg/Contests/Practice/Index/504#4).
21+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504\#4](https://judge.softuni.org/Contests/Practice/Index/504#4).
2222

Diff for: Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/triangle-area/triangle-area.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Write a program that reads from the console **a side and height of a triangle**
1313

1414
## Testing in the Judge System
1515

16-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504#7](https://judge.softuni.bg/Contests/Practice/Index/504#7).
16+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504#7](https://judge.softuni.org/Contests/Practice/Index/504#7).

Diff for: Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/usd-to-bgn/usd-to-bgn.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ Write a program for **conversion of US dollars** \(USD\) **into Bulgarian levs**
1212

1313
## Testing in the Judge System
1414

15-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504\#10](https://judge.softuni.bg/Contests/Practice/Index/504#10).
15+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504\#10](https://judge.softuni.org/Contests/Practice/Index/504#10).
1616

Diff for: Content/Chapter-2-1-simple-calculations/numerical-expressions/numerical-expressions.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Trapezoid area = 17.5
3535

3636
### Testing in the Judge System
3737

38-
Test your solution here : [https://judge.softuni.bg/Contests/Practice/Index/504\#4](https://judge.softuni.bg/Contests/Practice/Index/504#4).
38+
Test your solution here : [https://judge.softuni.org/Contests/Practice/Index/504\#4](https://judge.softuni.org/Contests/Practice/Index/504#4).
3939

4040
## Example: Circle Area and Perimeter
4141

@@ -61,7 +61,7 @@ Let's test the program with **radius **`r = 10`:
6161

6262
### Testing in the Judge System
6363

64-
Test your solution here:[https://judge.softuni.bg/Contests/Practice/Index/504\#5](https://judge.softuni.bg/Contests/Practice/Index/504#5).
64+
Test your solution here:[https://judge.softuni.org/Contests/Practice/Index/504\#5](https://judge.softuni.org/Contests/Practice/Index/504#5).
6565

6666
## Example: Rectangle Area in a Coordinate Plane
6767

@@ -93,7 +93,7 @@ When the program is executed with the values from the coordinate system given in
9393

9494
### Testing in the Judge System
9595

96-
Test your solution here:[https://judge.softuni.bg/Contests/Practice/Index/504\#6](https://judge.softuni.bg/Contests/Practice/Index/504#6).
96+
Test your solution here:[https://judge.softuni.org/Contests/Practice/Index/504\#6](https://judge.softuni.org/Contests/Practice/Index/504#6).
9797

9898
## Other Expressions
9999

Diff for: Content/Chapter-2-1-simple-calculations/printing-text-and-numbers/printing-text-and-numbers.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The result is:
4747

4848
## Testing in the Judge System
4949

50-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504\#3](https://judge.softuni.bg/Contests/Practice/Index/504#3).
50+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504\#3](https://judge.softuni.org/Contests/Practice/Index/504#3).
5151

5252
## Using the Dollar String Interpolation
5353

@@ -78,5 +78,5 @@ var town = Console.ReadLine();
7878
Console.WriteLine($"You are {firstName} {lastName}, a {age}-years old person from {town}.");
7979
```
8080

81-
Play with the above code and test it in the judge system: [https://judge.softuni.bg/Contests/Practice/Index/504\#3](https://legacy.gitbook.com/book/software-university-foundation/programming-basics-csharp-en/edit#).
81+
Play with the above code and test it in the judge system: [https://judge.softuni.org/Contests/Practice/Index/504\#3](https://legacy.gitbook.com/book/software-university-foundation/programming-basics-csharp-en/edit#).
8282

Diff for: Content/Chapter-2-1-simple-calculations/reading-floats-from-console/reading-floats-from-console.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ Note that if you enter and invalid number, e.g. "_asfd_", the program will crash
3232

3333
### Testing in the Judge System
3434

35-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504\#1](https://judge.softuni.bg/Contests/Practice/Index/504#1).
35+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504\#1](https://judge.softuni.org/Contests/Practice/Index/504#1).
3636

Diff for: Content/Chapter-2-1-simple-calculations/reading-integers-from-console/reading-integers-from-console.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Try to write a wrong number, for example "**hello**". You will get an error mess
4444

4545
### Testing in the Judge System
4646

47-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504\#0](https://judge.softuni.bg/Contests/Practice/Index/504#0).
47+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504\#0](https://judge.softuni.org/Contests/Practice/Index/504#0).
4848

4949
### How Does the Example Work?
5050

Diff for: Content/Chapter-2-1-simple-calculations/reading-text/reading-text.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ In this case the `{0}` expression is replaced with the **first** passed argument
3030

3131
### Testing in the Judge System
3232

33-
Test your solution here: [https://judge.softuni.bg/Contests/Practice/Index/504\#2](https://judge.softuni.bg/Contests/Practice/Index/504#2).
33+
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/504\#2](https://judge.softuni.org/Contests/Practice/Index/504#2).
3434

0 commit comments

Comments
 (0)