From 1a363bf3bc1f1e275eedef9ae10b5e7e0a912d28 Mon Sep 17 00:00:00 2001 From: abregman Date: Tue, 3 Dec 2019 12:05:47 +0200 Subject: [PATCH] Add 2 python questions --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ed7b465..15c746b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ :information_source:  This repository contains interview questions on various DevOps and SRE related topics -:bar_chart:  There are currently **562** questions +:bar_chart:  There are currently **565** questions :books:  To learn more about DevOps check the resources in [DevOpsBit.com](https://devopsbit.com) @@ -2413,6 +2413,10 @@ def is_unique4(l:list) -> bool: How to check how much time it took to execute a certain script or block of code?
+
+Find all the permutations of a given string
+
+ ##### Common Algorithms Implementation
@@ -2436,6 +2440,10 @@ with open('file.txt', 'w') as file: How to reverse a file?
+
+Sum all the integers in a given file
+
+ #### Regex