From 3eff3f7b6ae54a16a200e03ffe66d9b1b19740c8 Mon Sep 17 00:00:00 2001 From: shimekeleme Date: Thu, 25 Apr 2024 09:04:58 +0000 Subject: [PATCH] fire --- 0-minoperations.py | 12 ++++++++++++ README.md | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 0-minoperations.py diff --git a/0-minoperations.py b/0-minoperations.py new file mode 100644 index 0000000..771dee5 --- /dev/null +++ b/0-minoperations.py @@ -0,0 +1,12 @@ +#!/usr/bin/python3 +""" +Main file for testing +""" + +minOperations = __import__('0-minoperations').minOperations + +n = 4 +print("Min # of operations to reach {} char: {}".format(n, minOperations(n))) + +n = 12 +print("Min # of operations to reach {} char: {}".format(n, minOperations(n))) diff --git a/README.md b/README.md index 91bb6b7..f8e1e74 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -README.me +fire