Skip to content

Latest commit

 

History

History
41 lines (21 loc) · 508 Bytes

README_EN.md

File metadata and controls

41 lines (21 loc) · 508 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

...