All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0501_0600.s0504_base_7.Solution Maven / Gradle / Ivy

There is a newer version: 1.24
Show newest version
package g0501_0600.s0504_base_7;

// #Easy #Math #2022_07_24_Time_0_ms_(100.00%)_Space_39.4_MB_(98.67%)

public class Solution {
    public String convertToBase7(int num) {
        return Integer.toString(num, 7);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy