Skip to content

Instantly share code, notes, and snippets.

@msbaek
Created February 23, 2025 07:13
Show Gist options
  • Save msbaek/106832f3d62f40ce574dcee22fd30a2e to your computer and use it in GitHub Desktop.
Save msbaek/106832f3d62f40ce574dcee22fd30a2e to your computer and use it in GitHub Desktop.
Divider2.java
public class Divider {
public int divide(int dividend, int divisor) {
return dividend / divisor;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment