Skip to content

Latest commit

 

History

History
39 lines (21 loc) · 502 Bytes

README_EN.md

File metadata and controls

39 lines (21 loc) · 502 Bytes

中文文档

Description

Write a method that finds the maximum of two numbers. You should not use if-else or any other comparison operator.

Example:

Input: a = 1, b = 2

Output: 2

Solutions

Python3

Java

...