Skip to content

Commit

Permalink
fire
Browse files Browse the repository at this point in the history
  • Loading branch information
shime111 committed Apr 25, 2024
1 parent 56a69d2 commit 3eff3f7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions 0-minoperations.py
Original file line number Diff line number Diff line change
@@ -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)))
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
README.me
fire

0 comments on commit 3eff3f7

Please sign in to comment.