Add boilerplate for root project

This commit is contained in:
Rui Hu
2024-03-12 17:20:38 +08:00
parent 7739296926
commit 494bd6ff76
2 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.cleverthis.interview;
import com.cleverthis.interview.padlock.PadlockImpl;
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
/**
* This is a placeholder class showing a simple boilerplate.
* This class is not required, so you can replace with your own architecture.
* */
public class Solution {
public void solve(PadlockImpl padlock) {
throw new RuntimeException("TODO");
}
}