mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2026-05-31 19:02:03 +00:00
7 lines
254 B
TypeScript
7 lines
254 B
TypeScript
|
|
import { Complexity } from "@/types/complexity";
|
||
|
|
|
||
|
|
export const analyzeComplexity = async (content: string) => {
|
||
|
|
console.log("🚀 ~ analyzeComplexity ~ content:", content);
|
||
|
|
return { time: Complexity.Enum["O(N)"], space: Complexity.Enum["O(1)"] };
|
||
|
|
};
|