From f61bfdb37944ff8ad8f0574157cadd0b0489fa48 Mon Sep 17 00:00:00 2001 From: "W. Ziegler" <192917246+0xZiegler@users.noreply.github.com> Date: Thu, 6 Nov 2025 13:02:08 +0000 Subject: [PATCH] Add missing 'Kg to Pounds' conversion Pounds to Kilograms and vice versa (like the others) --- subjects/java/checkpoints/unit-converter/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subjects/java/checkpoints/unit-converter/README.md b/subjects/java/checkpoints/unit-converter/README.md index 7233dbbe1..02eda8a40 100644 --- a/subjects/java/checkpoints/unit-converter/README.md +++ b/subjects/java/checkpoints/unit-converter/README.md @@ -8,9 +8,10 @@ In a file named `UnitConverter.java`, write a function `convert` that returns th - Fahrenheit to Celsius: (F - 32) \* 5/9 - Celsius to Fahrenheit: C \* 9/5 + 32 -- Kilometers to Miles: K \* 0.621371 +- Kilometers to Miles: Km \* 0.621371 - Miles to Kilometers: M \* 1.60934 - Pounds to Kilograms: P \* 0.45359237 +- Kilograms to Pounds: Kg \* 2.204622622 ### Expected Functions