Skip to content

Commit 90a93f8

Browse files
committed
try it url and text replies
1 parent 3f299b8 commit 90a93f8

26 files changed

+48
-48
lines changed

Check-Prime/Prime-Numbers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ else:
3030
print('Your number is not a Prime')
3131
```
3232

33-
[try it: button]
33+
[Try it on Programming Hero button]
3434

3535
### S-4: Explanation
3636
The core part of the algorithm is the is_prime function.

Computations/Calculate-Grades.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ elif avg >=60:
3030
else:
3131
print("Grade: F")
3232
```
33-
**[Try It:](/https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
33+
**[Try it on Programming Hero](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
3434

3535
### S-4: Explanation
3636
Calculation of average is easy. Add them all and then divide by the count. As we are taking numbers for 5 subjects we are dividing the total by 5.

Computations/Complex-Interest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ total_due = compound_interest(principle, interest_rate, time)
2626
print("Interest Amount is:", total_due)
2727
```
2828

29-
**[Try It:](/https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
29+
**[Try it on Programming Hero](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
3030

3131
### S-4: Explanation
3232
Inside the function, just look into the power calculation.

Computations/Gravitational-Force.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ force =(G*mass1*mass2)/(r**2)
2626
print("The gravitational force is:", round(force, 5),"N")
2727
```
2828

29-
**[Try It:](/https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
29+
**[Try it on Programming Hero](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
3030

3131
### S-4: Explanation
3232
The calculation is simple. Only two things need to be learned from this.

Computations/Simple-Interest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ simple_interest = principle * (interest_rate/100) * time
2424
print("Simple interest is:", simple_interest)
2525
```
2626

27-
**[Try It:](/https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
27+
**[Try it on Programming Hero](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
2828

2929
### S-4: Explanation
3030
Read the code. I think you don’t need any extra explanation here.

Computations/Triangle-Area.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ s = (a + b + c) / 2
3131
area = math.sqrt(s*(s-a)*(s-b)*(s-c))
3232
print('Area of your triangle is ', area)
3333
```
34-
**[Try It:](/https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
34+
**[Try it on Programming Hero](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
3535

3636
### S-4: Explanation
3737
To calculate the square root. We used the math module. And call math.sqrt.

Conversions/Celsius-to-Fahrenheit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fahrenheit = celsius*9/5+32
2121
print("Temperature in Fahrenheit:", fahrenheit)
2222
```
2323

24-
**[Try It:](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
24+
**[Try it on Programming Hero](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
2525

2626
 
2727
[![Next Page](../assets/next-button.png)](../README.md)

Conversions/Decimal-to-binary-recursive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dec_to_binary(num)
2525
print(" ")
2626
```
2727

28-
**[Try It:](/https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
28+
**[Try it on Programming Hero](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
2929

3030
### S-4: Explanation
3131
The core part of the logic is simple. If the number is greater than 1, call the dec_to_binary function again. And, while calling, send the result of dividing operation as the input number.

Conversions/Decimal-to-binary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ num = int(input("Your decimal number: "))
5656
binary = dec_to_binary(num)
5757
print("Your binary is:", binary)
5858
```
59-
**[Try It:](/https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
59+
**[Try it on Programming Hero](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
6060

6161
### S-5: Explanation
6262
You have seen the remainder and dividing the number with // before. That is the core part of this decimal to a binary algorithm.

Conversions/Miles-to-Kilometers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ kilometers = miles*1.609344
2020
print("Distance in Kilometers:", kilometers)
2121
```
2222

23-
**[Try It:](/https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
23+
**[Try it on Programming Hero](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
2424

2525
### S-4: Explanation
2626
Just take a number from the user. Allow the user to enter a float number. Then, multiply that number by 1.609344. Keep the multiplication in the kilometers variable.
@@ -33,7 +33,7 @@ Now, tell me, if you have to do this using a function, how will you do that?
3333

3434
Go to the code editor and then try it yourself. When you do it yourself without following instructions, you will understand it. You will be able to feel the code and that is a big step in becoming a programmer!
3535

36-
**[Try It:](/https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
36+
**[Try it on Programming Hero](https://play.google.com/store/apps/details?id=com.learnprogramming.codecamp)**
3737

3838

3939
 

0 commit comments

Comments
 (0)